🌒 Nightly Release #487
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: 🌒 Nightly Release | |
on: | |
workflow_dispatch: | |
schedule: | |
- cron: "0 7 * * *" # every day at 12AM PST | |
env: | |
CI: true | |
jobs: | |
# HEADS UP! this "nightly" job will only ever run on the `main` branch due to it being a cron job, | |
# and the last commit on main will be what github shows as the trigger | |
# however in the checkout below we specify the `dev` branch, so all the scripts | |
# in this job will be ran from that, confusing i know, so in some cases we'll need to create | |
# multiple PRs when modifying nightly release processes | |
nightly: | |
name: 🌒 Nightly Release | |
if: github.repository == 'remix-run/remix' | |
runs-on: ubuntu-latest | |
outputs: | |
# allows this to be used in the `comment` job below - will be undefined if there's no release necessary | |
NEXT_VERSION: ${{ steps.version.outputs.NEXT_VERSION }} | |
steps: | |
- name: 🛑 Cancel Previous Runs | |
uses: styfle/[email protected] | |
- name: ⬇️ Checkout repo | |
uses: actions/checkout@v3 | |
with: | |
ref: dev | |
# checkout using a custom token so that we can push later on | |
token: ${{ secrets.NIGHTLY_PAT }} | |
fetch-depth: 0 | |
- name: ⎔ Setup node | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: ".nvmrc" | |
cache: "yarn" | |
- name: 📥 Install deps | |
run: yarn --frozen-lockfile | |
- name: 🕵️ Check for changes | |
id: version | |
run: | | |
# get latest commit sha | |
SHA=$(git rev-parse HEAD) | |
# get first 7 characters of sha | |
SHORT_SHA=${SHA::7} | |
# get latest nightly tag | |
LATEST_NIGHTLY_TAG=$(git tag -l v0.0.0-nightly-\* --sort=-creatordate | head -n 1) | |
# check if last commit to dev starts would be the nightly tag we're about to create (minus the date) | |
# if it is, we'll skip the nightly creation | |
# if not, we'll create a new nightly tag | |
if [[ ${LATEST_NIGHTLY_TAG} == v0.0.0-nightly-${SHORT_SHA}-* ]]; then | |
echo "🛑 Latest nightly tag is the same as the latest commit sha, skipping nightly release" | |
else | |
# yyyyMMdd format (e.g. 20221207) | |
DATE=$(date '+%Y%m%d') | |
# v0.0.0-nightly-<short sha>-<date> | |
NEXT_VERSION=0.0.0-nightly-${SHORT_SHA}-${DATE} | |
# set output so it can be used in other jobs | |
echo "NEXT_VERSION=${NEXT_VERSION}" >> $GITHUB_OUTPUT | |
fi | |
- name: ⤴️ Update version | |
if: steps.version.outputs.NEXT_VERSION | |
run: | | |
git config --local user.email "[email protected]" | |
git config --local user.name "Remix Run Bot" | |
git checkout -b nightly/${{ steps.version.outputs.NEXT_VERSION }} | |
yarn run version ${{steps.version.outputs.NEXT_VERSION}} --skip-prompt | |
git push origin --tags | |
- name: 🏗 Build | |
if: steps.version.outputs.NEXT_VERSION | |
run: yarn build | |
- name: 🔐 Setup npm auth | |
if: steps.version.outputs.NEXT_VERSION | |
run: | | |
echo "registry=https://registry.npmjs.org" >> ~/.npmrc | |
echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" >> ~/.npmrc | |
- name: 🚀 Publish | |
if: steps.version.outputs.NEXT_VERSION | |
run: npm run publish | |
comment: | |
needs: [nightly] | |
name: 📝 Comment on related issues and pull requests | |
if: github.repository == 'remix-run/remix' && needs.nightly.outputs.NEXT_VERSION | |
uses: ./.github/workflows/release-comments.yml | |
deployments: | |
needs: [nightly] | |
name: 🚀 Deployment Tests | |
if: github.repository == 'remix-run/remix' && needs.nightly.outputs.NEXT_VERSION | |
uses: remix-run/remix/.github/workflows/deployments.yml@main | |
secrets: | |
TEST_AWS_ACCESS_KEY_ID: ${{ secrets.TEST_AWS_ACCESS_KEY_ID }} | |
TEST_AWS_SECRET_ACCESS_KEY: ${{ secrets.TEST_AWS_SECRET_ACCESS_KEY }} | |
TEST_CF_ACCOUNT_ID: ${{ secrets.TEST_CF_ACCOUNT_ID }} | |
TEST_CF_GLOBAL_API_KEY: ${{ secrets.TEST_CF_GLOBAL_API_KEY }} | |
TEST_CF_EMAIL: ${{ secrets.TEST_CF_EMAIL }} | |
TEST_CF_PAGES_API_TOKEN: ${{ secrets.TEST_CF_PAGES_API_TOKEN }} | |
TEST_CF_API_TOKEN: ${{ secrets.TEST_CF_API_TOKEN }} | |
TEST_DENO_DEPLOY_TOKEN: ${{ secrets.TEST_DENO_DEPLOY_TOKEN }} | |
TEST_FLY_TOKEN: ${{ secrets.TEST_FLY_TOKEN }} | |
TEST_NETLIFY_TOKEN: ${{ secrets.TEST_NETLIFY_TOKEN }} | |
TEST_VERCEL_TOKEN: ${{ secrets.TEST_VERCEL_TOKEN }} | |
TEST_VERCEL_USER_ID: ${{ secrets.TEST_VERCEL_USER_ID }} | |
stacks: | |
needs: [nightly] | |
name: 🥞 Remix Stacks Test | |
if: github.repository == 'remix-run/remix' && needs.nightly.outputs.NEXT_VERSION | |
uses: remix-run/remix/.github/workflows/stacks.yml@main | |
with: | |
version: "${{ needs.nightly.outputs.NEXT_VERSION }}" |