alpha
Login
or
Join now
nandi.uk
/
gleam
Star
2
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Fork of daniellemaywood.uk/gleam — Wasm codegen work
Star
2
Fork
0
Atom
Configure Feed
Issues
Pull Requests
Commits
Tags
Feed URL
Select the types of activity you want to include in your feed.
Overview
Issues
Pulls
Pipelines
hub -> gh
author
Louis Pilfold
date
2 years ago
(Oct 5, 2023, 10:20 AM +0100)
commit
0e397834
0e397834a62b7ce578d895cf2ceae3a549eaad73
parent
be1e7e96
be1e7e96573d2c4886ba436ba23908fd99f230d9
+5
-9
1 changed file
Expand all
Collapse all
Unified
Split
.github
workflows
release-nightly.yaml
+5
-9
.github/workflows/release-nightly.yaml
View file
Reviewed
···
1
1
name: release-nightly
2
2
3
3
on:
4
4
+
workflow_dispatch:
4
5
schedule:
5
6
- cron: '45 0 * * *'
6
7
···
145
146
shell: bash
146
147
run: |
147
148
for i in $(seq 5); do
148
148
-
hub release edit nightly \
149
149
-
--draft=false \
150
150
-
--prerelease \
151
151
-
--message=Nightly \
152
152
-
--message="nightly release for ${{ env.DAY }}" \
153
153
-
--attach="${{ env.ASSET }}" \
154
154
-
--attach="${{ env.ASSET }}.sha256" \
155
155
-
--attach="${{ env.ASSET }}.sha512" \
149
149
+
gh release upload nightly --clobber \
150
150
+
"${{ env.ASSET }}" \
151
151
+
"${{ env.ASSET }}.sha256" \
152
152
+
"${{ env.ASSET }}.sha512" \
156
153
&& break
157
154
done
158
155
env:
159
156
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
160
160
-
HUB_VERBOSE: 1
161
157
162
158
- name: Upload x86_64-unknown-linux-musl artifact
163
159
uses: actions/upload-artifact@v2