Merge pull request #4376 from systeminit/nick/eng-2640 #192
Workflow file for this run
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
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 |