Skip to content

πŸŒ’ Remix Nightly Release #10

πŸŒ’ Remix Nightly Release

πŸŒ’ Remix Nightly Release #10

Workflow file for this run

name: πŸŒ’ Remix Nightly Release
on:
workflow_dispatch:
schedule:
- cron: "0 8 * * *"
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: write
pull-requests: write
env:
CI: true
jobs:
bump:
name: πŸ“¦ Bump Remix to latest nightly
if: github.repository == 'mcansh/mcan.sh'
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@v4
- name: πŸ§… Setup Bun
uses: oven-sh/setup-bun@v1
- name: βŽ” Setup node
uses: actions/setup-node@v4
with:
node-version: 20
- name: πŸ“₯ Install dependencies
run: bun install
- name: πŸ“¦ Bump Remix to latest nightly
id: bump
run: |
PREV_VERSION=$(npm ls --depth=0 @remix-run/react --json | jq -r '.dependencies["@remix-run/react"].version')
VERSION=$(npm info @remix-run/react dist-tags.nightly)
npx --yes upgrade-remix@latest $VERSION
npm run format
if [ "$(git status --porcelain)" ]; then
echo "version=$VERSION" >> $GITHUB_OUTPUT
echo "prev_version=$PREV_VERSION" >> $GITHUB_OUTPUT
fi
- name: πŸ“€ Push changes
uses: gr2m/create-or-update-pull-request-action@v1
if: steps.bump.outputs.version != '' && steps.bump.outputs.prev_version != ''
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
title: "chore(deps): bump `@remix-run/*` to ${{ steps.bump.outputs.version }}"
commit-message: "chore(deps): bump `@remix-run/*` to ${{ steps.bump.outputs.version }}"
update-pull-request-title-and-body: true
branch: actions/remix-nightly
author: "github-actions[bot] <github-actions[bot]@users.noreply.github.com>"
body: |
This PR bumps \`@remix-run/*\` to the latest nightly release. For a list of changes, see the list of [changes][changes].
[changes]: https://github.com/remix-run/remix/compare/v${{ steps.bump.outputs.prev_version }}...v${{ steps.bump.outputs.version }}