-
Notifications
You must be signed in to change notification settings - Fork 102
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #2103 from Hyperkid123/nx-release-action
chore: setup GH release action
- Loading branch information
Showing
1 changed file
with
42 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -118,3 +118,45 @@ jobs: | |
- uses: './.github/actions/cache' | ||
- name: Check circular imports | ||
run: npx nx affected -t test:circular-dependencies --exclude=demo | ||
release: | ||
runs-on: ubuntu-latest | ||
needs: [install, build, unit-test, component-test, lint, commitlint, check-circular-imports] | ||
if: github.event_name != 'pull_request' | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 | ||
ssh-key: ${{ secrets.BOT_AUTH_KEY }} | ||
- name: Use Node.js 20.x | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 20.x | ||
- uses: nrwl/nx-set-shas@v4 | ||
- uses: './.github/actions/cache' | ||
- name: Install deps | ||
shell: bash | ||
run: npm i | ||
- name: Rebuild packages | ||
run: npm run build | ||
- name: git config | ||
shell: bash | ||
run: | | ||
git config user.name "Nachobot" | ||
git config user.email "[email protected]" | ||
- name: Set publish config | ||
env: | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
shell: bash | ||
run: npm config set '//registry.npmjs.org/:_authToken' "${NPM_TOKEN}" | ||
- name: Release packages | ||
shell: bash | ||
env: | ||
GH_TOKEN: ${{ secrets.GH_BOT_TOKEN }} | ||
GITHUB_TOKEN: ${{ secrets.GH_BOT_TOKEN }} | ||
run: npx nx affected -t version | ||
- name: Tag last-release | ||
shell: bash | ||
run: | | ||
git tag -f last-release | ||
git push origin last-release --force |