12345678910111213141516171819202122232425 |
- name: Publish Docker
- on:
- push:
- branches:
- - release
- jobs:
- publish-docker:
- runs-on: ubuntu-latest
- steps:
- - name: Checkout repository
- uses: actions/checkout@v3
- - name: Login to DockerHub
- uses: docker/login-action@v2
- with:
- username: ${{ secrets.DOCKER_USERNAME }}
- password: ${{ secrets.DOCKER_PASSWORD }}
- - name: Build and push
- uses: docker/build-push-action@v3
- with:
- context: .
- push: true
- tags: excalidraw/excalidraw:latest
|