docker-update.yml 1.7 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. paths-ignore:
  12. - 'markdown/**'
  13. # Allows you to run this workflow manually from the Actions tab
  14. workflow_dispatch:
  15. env:
  16. REGISTRY: ghcr.io
  17. IMAGE_NAME: ${{ github.repository }}
  18. jobs:
  19. push_to_registry:
  20. name: Push Docker image to GitHub Packages
  21. runs-on: ubuntu-latest
  22. permissions:
  23. packages: write
  24. contents: read
  25. steps:
  26. - name: Check out the repo
  27. uses: actions/checkout@v2
  28. - name: Log in to the Container registry
  29. uses: docker/login-action@f054a8b539a109f9f41c372932f1ae047eff08c9
  30. with:
  31. registry: ${{ env.REGISTRY }}
  32. username: ${{ github.actor }}
  33. password: ${{ secrets.GITHUB_TOKEN }}
  34. - name: Extract metadata (tags, labels) for Docker
  35. id: meta
  36. uses: docker/metadata-action@98669ae865ea3cffbcbaa878cf57c20bbf1c6c38
  37. with:
  38. images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
  39. - name: Build and Push to GitHub Packages
  40. uses: docker/build-push-action@ad44023a93711e3deb337508980b4b5e9bcdc5dc
  41. with:
  42. context: .
  43. file: .docker/resume.dockerfile
  44. push: true
  45. tags: ${{ steps.meta.outputs.tags }}
  46. labels: ${{ steps.meta.outputs.labels }}