look for launch config with npx dbos debug
OR npx dbos-sdk debug
…
#62
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: On Push | |
on: | |
push: | |
branches: | |
- main | |
- dev | |
- release/* | |
jobs: | |
build: | |
uses: ./.github/workflows/build.yml | |
dump-vars: | |
needs: build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Dump build info | |
env: | |
REL_INFO: ${{ toJson(needs.build.outputs) }} | |
run: echo "$REL_INFO" |