Skip to content

adding CircularLoader to /verify page #33

adding CircularLoader to /verify page

adding CircularLoader to /verify page #33

Workflow file for this run

name: Auto Build and Depoly
on:
pull_request:
types: [closed]
branches: [main]
jobs:
release:
if: github.event.pull_request.merged == true
name: Release
permissions:
contents: write
uses: utaipei-sa/reserve.utsa/.github/workflows/tag-and-release.yml@main
build-test:
name: Build test
permissions:
packages: write
id-token: write
contents: read
needs: release
uses: utaipei-sa/reserve.utsa/.github/workflows/docker-image.yml@main
with:
tag: ${{ needs.release.outputs.tag }}
build-env: test
build-stage:
name: Build stage
permissions:
packages: write
id-token: write
contents: read
needs: release
uses: utaipei-sa/reserve.utsa/.github/workflows/docker-image.yml@main
with:
tag: ${{ needs.release.outputs.tag }}
build-env: stage
build-prod:
name: Build prod
permissions:
packages: write
id-token: write
contents: read
needs: release
uses: utaipei-sa/reserve.utsa/.github/workflows/docker-image.yml@main
with:
tag: ${{ needs.release.outputs.tag }}
build-env: production