Skip to content

Merge branch 'dotnet-8' into develop #15

Merge branch 'dotnet-8' into develop

Merge branch 'dotnet-8' into develop #15

name: Release pipeline
on:
push:
branches:
- main
workflow_dispatch:
jobs:
set-version:
name: Set Version
runs-on: ubuntu-latest
outputs:
version: ${{ steps.setVersion.outputs.VERSION }}
steps:
- name: Set Version
id: setVersion
# set version to date in vYYYY-MM-DD-commitSha format
run: |
shortSha=$(echo ${{ github.sha }} | cut -c1-8)
echo "VERSION=v$(date --rfc-3339=date)-$shortSha" >> ${GITHUB_OUTPUT}
build-api:
name: Build API
needs: [ set-version ]
uses: ./.github/workflows/lexbox-api.yaml
with:
version: ${{ needs.set-version.outputs.version }}
label-latest: true
build-ui:
name: Build UI
needs: [ set-version ]
uses: ./.github/workflows/lexbox-ui.yaml
with:
version: ${{ needs.set-version.outputs.version }}
label-latest: true
build-hgweb:
name: Build hgweb
needs: [ set-version ]
uses: ./.github/workflows/lexbox-hgweb.yaml
with:
version: ${{ needs.set-version.outputs.version }}
label-latest: true
deploy:
name: Deploy Staging
uses: ./.github/workflows/deploy.yaml
needs: [ build-api, build-ui, build-hgweb, set-version ]
secrets: inherit
with:
version: ${{ needs.set-version.outputs.version }}
image: 'ghcr.io/sillsdev/lexbox-*'
k8s-environment: staging
deploy-domain: staging.languagedepot.org
integration-tests:
name: Integration tests
uses: ./.github/workflows/integration-test.yaml
needs: deploy
permissions:
checks: write
secrets: inherit
with:
test-domain: staging.languagedepot.org
deploy-prod:
name: Deploy Production
uses: ./.github/workflows/deploy.yaml
needs: [ integration-tests, set-version ]
# we want to allow deployment even if some tests fail because they are currently flaky
if: ${{ !cancelled() && (needs.integration-tests.result == 'success' || needs.integration-tests.result == 'failure') }}
secrets: inherit
with:
version: ${{ needs.set-version.outputs.version }}
image: 'ghcr.io/sillsdev/lexbox-*'
k8s-environment: production
deploy-domain: prod.languagedepot.org