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 43a2504 commit 935ee1bCopy full SHA for 935ee1b
.github/workflows/check-builds.yaml
@@ -19,7 +19,7 @@ on:
19
20
jobs:
21
ubuntu-build:
22
- runs-on: ubuntu-latest
+ runs-on: ubuntu-22.04
23
steps:
24
- name: Set environment
25
run: echo "SHORT_SHA=${GITHUB_SHA::7}" >> $GITHUB_ENV
@@ -112,7 +112,7 @@ jobs:
112
path: bin
113
114
copy-artifacts:
115
- if: github.event_name != 'pull_request' && github.ref == 'refs/heads/master'
+ if: github.event_name != 'pull_request' && (github.ref_type == 'tag' || github.ref_name == 'master')
116
runs-on: ubuntu-latest
117
needs: [windows-build, ubuntu-build]
118
env:
@@ -121,7 +121,6 @@ jobs:
121
122
- uses: actions/checkout@v3
123
with:
124
- submodules: recursive
125
fetch-depth: 0
126
- run: |
127
GITDESC=$(git describe --tags)
0 commit comments