File tree 3 files changed +14
-6
lines changed
3 files changed +14
-6
lines changed Original file line number Diff line number Diff line change 67
67
gh attestation verify dartsdk-linux-${{ matrix.host-arch }}-release.tar.gz --repo ${{ github.repository }} --signer-workflow ${{ github.repository }}/.github/workflows/build.yml@refs/tags/${{ steps.version.outputs.version }} || true
68
68
rm -rf dart-sdk/sdk/tools/sdks/dart-sdk
69
69
tar -xzf dartsdk-linux-${{ matrix.host-arch }}-release.tar.gz -C dart-sdk/sdk/tools/sdks
70
+ else
71
+ gh workflow run build.yml --repo ${{ github.repository }} --raw-field ref=${{ steps.version.outputs.version }}
70
72
fi
71
73
env :
72
74
GH_TOKEN : ${{ github.token }}
97
99
runs-on : ubuntu-latest
98
100
99
101
permissions :
100
- id-token : write
102
+ actions : write
101
103
attestations : write
104
+ id-token : write
102
105
103
106
container :
104
107
image : docker.io/library/alpine
Original file line number Diff line number Diff line change 8
8
jobs :
9
9
build :
10
10
permissions :
11
- id-token : write
11
+ actions : write
12
12
attestations : write
13
+ id-token : write
13
14
uses : ./.github/workflows/build.yml
14
15
with :
15
16
ref : ${{ github.ref_name }}
Original file line number Diff line number Diff line change 59
59
needs : [latest]
60
60
if : needs.latest.outputs.stable-cache-hit != 'true'
61
61
permissions :
62
- id-token : write
62
+ actions : write
63
63
attestations : write
64
+ id-token : write
64
65
uses : ./.github/workflows/build.yml
65
66
with :
66
67
ref : ${{ needs.latest.outputs.stable-version }}
70
71
needs : [latest]
71
72
if : needs.latest.outputs.beta-cache-hit != 'true' && needs.latest.outputs.beta-version != needs.latest.outputs.stable-version
72
73
permissions :
73
- id-token : write
74
+ actions : write
74
75
attestations : write
76
+ id-token : write
75
77
uses : ./.github/workflows/build.yml
76
78
with :
77
79
ref : ${{ needs.latest.outputs.beta-version }}
81
83
needs : [latest]
82
84
if : needs.latest.outputs.dev-cache-hit != 'true' && needs.latest.outputs.dev-version != needs.latest.outputs.beta-version && needs.latest.outputs.dev-version != needs.latest.outputs.stable-version
83
85
permissions :
84
- id-token : write
86
+ actions : write
85
87
attestations : write
88
+ id-token : write
86
89
uses : ./.github/workflows/build.yml
87
90
with :
88
91
ref : ${{ needs.latest.outputs.dev-version }}
91
94
edge :
92
95
needs : [latest]
93
96
permissions :
94
- id-token : write
97
+ actions : write
95
98
attestations : write
99
+ id-token : write
96
100
uses : ./.github/workflows/build.yml
97
101
with :
98
102
ref : ${{ needs.latest.outputs.edge-version }}
You can’t perform that action at this time.
0 commit comments