您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

publish-docker.yml 426B

1234567891011121314151617181920
  1. name: Publish Docker
  2. on:
  3. push:
  4. branches:
  5. - master
  6. jobs:
  7. publish-docker:
  8. runs-on: ubuntu-latest
  9. steps:
  10. - uses: actions/checkout@v2
  11. - uses: docker/build-push-action@v1
  12. with:
  13. username: ${{ secrets.DOCKER_USERNAME }}
  14. password: ${{ secrets.DOCKER_PASSWORD }}
  15. repository: excalidraw/excalidraw-room
  16. tag_with_ref: true
  17. tag_with_sha: true