mirror of
https://github.com/excalidraw/excalidraw.git
synced 2024-11-10 11:35:52 +01:00
f1ceeab8d9
* prepare for docker publishing * fix links * remove that * update README * test publish worklofw * build and push on master * include gtag by default
21 lines
421 B
YAML
21 lines
421 B
YAML
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 }}
|
|
repository: excalidraw/excalidraw
|
|
tag_with_ref: true
|
|
tag_with_sha: true
|