feat(quiz): display user position in top #30
This file contains hidden or 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: Continuous Delivery | |
| on: | |
| workflow_dispatch: | |
| push: | |
| branches: | |
| - master | |
| paths: | |
| - 'src/**' | |
| - 'Dockerfile' | |
| - '.github/workflows/continuous-delivery.yml' | |
| - 'package.json' | |
| jobs: | |
| PublishOgden: | |
| name: Publish Ogden image to container registries | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Project | |
| uses: actions/checkout@v4 | |
| - name: Setup Docker Buildx | |
| uses: docker/[email protected] | |
| - name: Login to GitHub Container Registry | |
| uses: docker/[email protected] | |
| with: | |
| registry: ghcr.io | |
| username: ${{ github.repository_owner }} | |
| password: ${{ secrets.GITHUB_TOKEN }} | |
| - name: Build and push Ogden Docker image | |
| uses: docker/[email protected] | |
| with: | |
| push: true | |
| context: . | |
| tags: ghcr.io/gw2ocs/ogden:latest |