Skip to content

Merge pull request #4375 from systeminit/fix(dal,-sdf,-web)-Calculate… #176

Merge pull request #4375 from systeminit/fix(dal,-sdf,-web)-Calculate…

Merge pull request #4375 from systeminit/fix(dal,-sdf,-web)-Calculate… #176

Workflow file for this run

on:
push:
tags:
# These fairly explicitly directly matches the tags we push [examples]
- 'bin/sdf/image/*' # bin/sdf/image/20240820.143323.0-sha.982dd5a81
- 'bin/rebaser/image/*' # bin/rebaser/image/20240820.143323.0-sha.982dd5a81
- 'bin/pinga/image/*' # bin/pinga/image/20240820.143323.0-sha.982dd5a81
- 'bin/veritech/image/*' # bin/veritech/image/20240820.031721.0-sha.efea02a6a
- 'app/web/image/*' # app/web/image/20240820.000535.0-sha.13e826961
jobs:
parse-tag:
runs-on: ubuntu-latest
outputs:
service: ${{ steps.service.outputs.service }}
steps:
- id: service
run: |
echo "service=$(echo "${{ github.ref_name }}" | awk -F'/' '{print $2}')" >> "$GITHUB_OUTPUT"
deploy-tools-prod:
needs: parse-tag
uses: ./.github/workflows/deploy-stack.yml
with:
environment: tools
service: ${{ needs.parse-tag.outputs.service }}
version: stable
deploy-type: binary
secrets: inherit
continue-on-error: true

Check failure on line 30 in .github/workflows/deploy-on-main.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/deploy-on-main.yml

Invalid workflow file

The workflow is not valid. .github/workflows/deploy-on-main.yml (Line: 30, Col: 5): Unexpected value 'continue-on-error'
full-deploy-on-failure:
if: failure()
uses: ./.github/workflows/deploy-stack.yml
with:
environment: tools
service: all
version: stable
deploy-type: instance
secrets: inherit
needs: deploy-tools-prod