docker-update.yml 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253
  1. # This workflow updates the docker container which has context and
  2. # pandoc installed, and on which the resume documents are built. The
  3. # workflow runs whenever the dockerfile is changed, and updates the
  4. # container image in the Github Packages registry.
  5. name: Publish Docker Image
  6. # Controls when the action will run.
  7. on:
  8. # Triggers the workflow on push events but only for the master branch
  9. push:
  10. branches: [ master ]
  11. # Allows you to run this workflow manually from the Actions tab
  12. workflow_dispatch:
  13. env:
  14. REGISTRY: ghcr.io
  15. IMAGE_NAME: ${{ github.repository }}
  16. jobs:
  17. push_to_registry:
  18. name: Push Docker image to GitHub Packages
  19. runs-on: ubuntu-latest
  20. permissions:
  21. packages: write
  22. contents: read
  23. steps:
  24. - name: Check out the repo
  25. uses: actions/checkout@v2
  26. - name: Log in to the Container registry
  27. uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
  28. with:
  29. registry: ${{ env.REGISTRY }}
  30. username: ${{ github.actor }}
  31. password: ${{ secrets.GITHUB_TOKEN }}
  32. - name: Extract metadata (tags, labels) for Docker
  33. id: meta
  34. uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
  35. with:
  36. images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
  37. - name: Build and Push to GitHub Packages
  38. uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
  39. with:
  40. context: .docker
  41. file: resume.dockerfile
  42. push: true
  43. tags: ${{ steps.meta.outputs.tags }}
  44. labels: ${{ steps.meta.outputs.labels }}