Skip to content

Commit 0c2f007

Browse files
committedMay 17, 2022
Merge branch 'main' into release-v1.5.0
2 parents 89327a9 + 15d18e6 commit 0c2f007

File tree

172 files changed

+2115
-293
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

172 files changed

+2115
-293
lines changed
 

‎.github/workflows/nightly.yml

+6-6
Original file line numberDiff line numberDiff line change
@@ -4,12 +4,12 @@ on:
44
schedule:
55
- cron: "0 7 * * *" # every day at 12AM PST
66

7-
# HEADS UP! this workflow will only ever run on the `main` branch due to it being a cron job,
8-
# and the last commit on main will be what github shows as the trigger
9-
# however in the checkout below we specify the `dev` branch, so all the scripts
10-
# will be ran from that, confusing i know, so in some cases we'll need to create
11-
# multiple PRs when modifying nightly release processes
127
jobs:
8+
# HEADS UP! this "nightly" job will only ever run on the `main` branch due to it being a cron job,
9+
# and the last commit on main will be what github shows as the trigger
10+
# however in the checkout below we specify the `dev` branch, so all the scripts
11+
# in this job will be ran from that, confusing i know, so in some cases we'll need to create
12+
# multiple PRs when modifying nightly release processes
1313
nightly:
1414
name: 🌒 Nightly Release
1515
if: github.repository == 'remix-run/remix'
@@ -99,4 +99,4 @@ jobs:
9999
with:
100100
token: ${{ secrets.NIGHTLY_PAT }}
101101
event-type: release
102-
client-payload: '{ "ref": "refs/tags/v${{ needs.nightly.outputs.NEXT_VERSION }}" }'
102+
client-payload: '{ "ref": "refs/tags/v${{ needs.nightly.outputs.NEXT_VERSION }}", "version": "${{ needs.nightly.outputs.NEXT_VERSION }}" }'

‎.github/workflows/release.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -54,4 +54,4 @@ jobs:
5454
with:
5555
token: ${{ secrets.NIGHTLY_PAT }}
5656
event-type: release
57-
client-payload: '{ "ref": "${{ github.ref }}" }'
57+
client-payload: '{ "ref": "${{ github.ref }}", "version": "${{ github.ref_name }}" }'

0 commit comments

Comments
 (0)
Please sign in to comment.