Separate test and deploy GitHub workflows #6
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: End 2 End Docker Image | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'web/Dockerfile.e2e' | |
- 'web/**' | |
- 'web/**.sln' | |
- 'web/.config/**' | |
- 'web/package.json' | |
- 'web/bun.lockb' | |
- 'web/migrondi.e2e.json' | |
- 'web/migrations/**' | |
- 'web/playwright.config.ts' | |
- 'web/tests/**' | |
jobs: | |
push_to_registries: | |
name: Push Docker image to GitHub Packages | |
runs-on: ubuntu-latest | |
permissions: | |
packages: write | |
contents: read | |
steps: | |
- name: Check out the repo | |
uses: actions/checkout@v4 | |
- name: Log in to the Container registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract metadata (tags, labels) for Docker | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: ghcr.io/${{ github.repository }}-e2e | |
- name: Build and push Docker images | |
uses: docker/build-push-action@v5 | |
with: | |
context: ./web | |
file: ./web/Dockerfile.e2e | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} |