capitalize AS #97
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: UI | |
on: | |
push: | |
branches: | |
- "main" | |
paths: | |
- "ui/**" | |
- "e2e/**" | |
workflow_dispatch: | |
jobs: | |
test: | |
runs-on: ubuntu-22.04 | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Test ui | |
run: docker compose -f docker-compose.test.yml up --build --abort-on-container-exit --exit-code-from e2e | |
build: | |
runs-on: "ubuntu-latest" | |
needs: test | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v2 | |
- name: 'Create env file' | |
run: | | |
echo "${{ secrets.UI_ENV }}" > ui/.env.production | |
- name: Log in to registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ghcr.io | |
username: ${{ secrets.CONTAINER_USERNAME }} | |
password: ${{ secrets.CONTAINER_PASSWORD }} | |
- name: Build and push container image to registry | |
uses: docker/build-push-action@v5 | |
with: | |
push: true | |
tags: ${{ secrets.REPOSITORY_NAME }}/planning-poker-ui:${{ github.sha }},${{ secrets.REPOSITORY_NAME }}/planning-poker-ui:latest, | |
context: ./ui |