-
Notifications
You must be signed in to change notification settings - Fork 193
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
17 additions
and
30 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,65 +1,55 @@ | ||
name: Version 🔖 | ||
name: Release 🔖 | ||
|
||
on: | ||
push: | ||
branches: | ||
- v2 | ||
- "main" | ||
paths-ignore: | ||
- "docs/**" | ||
|
||
# Ensure only one workflow/job is publishing to npm at a time | ||
concurrency: publish-to-npm | ||
|
||
jobs: | ||
version: | ||
release: | ||
name: Release | ||
if: github.repository == 'latticexyz/mud' | ||
runs-on: ubuntu-latest | ||
# Permissions necessary for Changesets to push a new branch and open PRs | ||
# (for automated Version Packages PRs), and request the JWT for provenance. | ||
# More info: https://docs.github.com/en/actions/deployment/security-hardening-your-deployments/about-security-hardening-with-openid-connect#adding-permissions-settings | ||
permissions: | ||
contents: write | ||
pull-requests: write | ||
id-token: write | ||
steps: | ||
- name: Checkout | ||
- name: Checkout Repo | ||
uses: actions/checkout@v3 | ||
with: | ||
submodules: recursive | ||
|
||
- name: "Setup" | ||
uses: ./.github/actions/setup | ||
|
||
- name: Clean | ||
shell: bash | ||
run: pnpm turbo run clean --force --concurrency 10 | ||
|
||
# Build without cache to ensure we release with the most accurate output | ||
- name: Build | ||
shell: bash | ||
run: pnpm turbo run build --force --concurrency 10 | ||
|
||
- name: Outdated files, run `pnpm build` and commit them | ||
uses: ./.github/actions/require-empty-diff | ||
- name: Set deployment token | ||
run: npm config set '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}" | ||
env: | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
|
||
- name: Check for pre.json file existence | ||
id: check_files | ||
uses: andstor/[email protected] | ||
with: | ||
files: ".changeset/pre.json" | ||
|
||
- name: Set deployment token | ||
run: npm config set '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}" | ||
|
||
# https://github.com/changesets/action#with-publishing | ||
- name: Handle Release Pull Request or Publish to npm | ||
id: changesets | ||
- name: Create version PR or publish 🚀 | ||
if: steps.check_files.outputs.files_exists == 'false' | ||
uses: changesets/action@v1 | ||
with: | ||
title: "chore: version packages 🔖" | ||
commit: "chore: version packages 🔖" | ||
publish: pnpm release:publish | ||
version: pnpm release:version | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
|
||
docker: | ||
uses: ./.github/workflows/docker.yml | ||
|