Commit 30b4932 1 parent 3616209 commit 30b4932 Copy full SHA for 30b4932
File tree 2 files changed +2
-10
lines changed
2 files changed +2
-10
lines changed Original file line number Diff line number Diff line change 8
8
tags :
9
9
- ' *'
10
10
workflow_dispatch :
11
- schedule :
12
- # Run at 00:00 UTC on the 1st, 10th, and 20th of every month
13
- - cron : ' 0 0 1,10,20 * *'
14
11
15
12
concurrency :
16
13
group : ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }}
102
99
needs : [build]
103
100
if : >-
104
101
github.repository == 'pyodide/pyodide-build-environment-nightly' &&
105
- (github.event_name == 'push' && startsWith(github.ref, 'refs/tags')) ||
106
- (github.event_name == 'schedule')
102
+ (github.event_name == 'push' && startsWith(github.ref, 'refs/tags'))
107
103
permissions :
108
104
# Required to sign the attestations
109
105
id-token : write
@@ -127,11 +123,7 @@ jobs:
127
123
id : release_version
128
124
shell : bash
129
125
run : |
130
- if [[ ${{ github.event_name }} == 'schedule' ]]; then
131
- echo "release_version=$(date +'%Y%m%d')" >> $GITHUB_OUTPUT
132
- else
133
- echo "release_version=${{ github.ref_name }}" >> $GITHUB_OUTPUT
134
- fi
126
+ echo "release_version=${{ github.ref_name }}" >> $GITHUB_OUTPUT
135
127
136
128
cat $GITHUB_OUTPUT
137
129
You can’t perform that action at this time.
0 commit comments