We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0ca1c9a commit a9068a6Copy full SHA for a9068a6
.github/workflows/build.yml
@@ -27,7 +27,7 @@ jobs:
27
run: |
28
echo "REVISION -> $GITHUB_SHA"
29
echo "VERSION -> $GITVERSION_SEMVER"
30
- build:
+ test:
31
runs-on: ubuntu-latest
32
container:
33
image: golang:1.19-bullseye
.github/workflows/release.yml
@@ -2,13 +2,14 @@ name: release
2
3
on:
4
workflow_run:
5
- workflows: ['CI'] # runs after CI workflow
+ workflows: ['CI']
6
types:
7
- completed
8
9
jobs:
10
set-deps-dotnet-poop-here:
11
12
+ if: ${{ github.event.workflow_run.conclusion == 'success' }}
13
14
image: mcr.microsoft.com/dotnet/sdk:6.0
15
outputs:
0 commit comments