2020-06-02 21:22:40 +02:00
|
|
|
name: Publish Docker
|
|
|
|
|
|
|
|
on:
|
|
|
|
push:
|
|
|
|
branches:
|
|
|
|
- master
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
publish-docker:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- uses: actions/checkout@v2
|
|
|
|
- uses: docker/build-push-action@v1
|
|
|
|
with:
|
|
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
2020-06-18 10:46:24 +01:00
|
|
|
repository: excalidraw/excalidraw
|
2020-06-02 21:22:40 +02:00
|
|
|
tag_with_ref: true
|
|
|
|
tag_with_sha: true
|