We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent d10c136 commit 0332253Copy full SHA for 0332253
1 file changed
.github/workflows/ci.yml
@@ -11,6 +11,8 @@ on:
11
jobs:
12
build-linux:
13
runs-on: ubuntu-22.04
14
+ permissions:
15
+ contents: write
16
17
steps:
18
- uses: actions/checkout@v6.0.2
@@ -54,7 +56,7 @@ jobs:
54
56
- name: Trigger CoreOS-repo package build
55
57
if: startsWith(github.ref, 'refs/tags/')
58
env:
- TAG: ${{ github.ref_name }} # e.g. v1.0.0
59
+ TAG: ${{ github.ref_name }} # e.g. v1.0.0
60
run: |
61
VERSION="${TAG#v}" # strip leading v → 1.0.0
62
curl -s -X POST \
@@ -65,6 +67,8 @@ jobs:
65
67
66
68
build-windows:
69
runs-on: windows-latest
70
71
72
73
74
VCPKG_DEFAULT_TRIPLET: x64-windows-static
0 commit comments