Log OpenTofu run stages #124
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: Amaurot | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- Amaurot.Common/** | |
- Amaurot.Processor/** | |
- Amaurot.Receiver/** | |
- npins/* | |
pull_request: | |
branches: | |
- main | |
paths: | |
- Amaurot.Common/** | |
- Amaurot.Processor/** | |
- Amaurot.Receiver/** | |
- npins/* | |
workflow_dispatch: | |
jobs: | |
Docker: | |
permissions: | |
contents: read | |
id-token: write | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: DeterminateSystems/nix-installer-action@v15 | |
with: | |
source-url: https://install.lix.systems/lix/lix-installer-x86_64-linux | |
diagnostic-endpoint: "" | |
- uses: cachix/cachix-action@v15 | |
with: | |
name: drakon64-amaurot | |
authToken: ${{ secrets.CACHIX_AUTH_TOKEN }} | |
- run: nix-build Amaurot.Processor/docker.nix Amaurot.Receiver/docker.nix | |
- run: | | |
docker load < result | |
docker load < result-2 | |
- run: | | |
docker tag amaurot-processor:latest ${{ secrets.GOOGLE_ARTIFACT_REGISTRY }}/amaurot-processor:latest | |
docker tag amaurot-receiver:latest ${{ secrets.GOOGLE_ARTIFACT_REGISTRY }}/amaurot-receiver:latest | |
- uses: google-github-actions/auth@v2 | |
with: | |
project_id: ${{ secrets.GOOGLE_PROJECT_ID }} | |
service_account: ${{ secrets.GOOGLE_SERVICE_ACCOUNT }} | |
workload_identity_provider: ${{ secrets.GOOGLE_WORKLOAD_IDENTITY_PROVIDER }} | |
- uses: google-github-actions/setup-gcloud@v2 | |
- run: gcloud auth configure-docker ${{ vars.GOOGLE_REGION }}-docker.pkg.dev | |
- run: | | |
docker push ${{ secrets.GOOGLE_ARTIFACT_REGISTRY }}/amaurot-processor:latest | |
docker push ${{ secrets.GOOGLE_ARTIFACT_REGISTRY }}/amaurot-receiver:latest | |
- uses: google-github-actions/deploy-cloudrun@v2 | |
with: | |
service: amaurot-processor | |
image: ${{ secrets.GOOGLE_ARTIFACT_REGISTRY }}/amaurot-processor:latest | |
region: ${{ vars.GOOGLE_REGION }} | |
- uses: google-github-actions/deploy-cloudrun@v2 | |
with: | |
service: amaurot-receiver | |
image: ${{ secrets.GOOGLE_ARTIFACT_REGISTRY }}/amaurot-receiver:latest | |
region: ${{ vars.GOOGLE_REGION }} |