Skip to content

Commit

Permalink
ci: adds release ci (#55)
Browse files Browse the repository at this point in the history
* ci: adds release-please workflow

* ci: updates script name to build package
  • Loading branch information
ctran88 authored Nov 18, 2024
1 parent 85eedeb commit 7bdc1db
Show file tree
Hide file tree
Showing 3 changed files with 54 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ jobs:
npm run beachball-bump
- name: Build
run: npm run tsc
run: npm run build

- name: Clear Beachball Changes
run: |
Expand Down
52 changes: 52 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
name: Release

on:
workflow_dispatch:
push:
branches:
- main

permissions:
contents: write
pull-requests: write

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: googleapis/release-please-action@v4
id: release
with:
release-type: node
- uses: actions/checkout@v4
if: ${{ steps.release.outputs.release_created }}
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
if: ${{ steps.release.outputs.release_created }}
- name: Install dependencies
if: ${{ steps.release.outputs.release_created }}
run: npm ci
- name: Build
if: ${{ steps.release.outputs.release_created }}
run: npm run build
- name: Publish to NPM
if: ${{ steps.release.outputs.release_created }}
run: npm publish --dry-run
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_ACCESS_TOKEN }}
# https://github.com/googleapis/release-please-action?tab=readme-ov-file#creating-majorminor-tags
- name: Tag versions
if: ${{ steps.release.outputs.release_created }}
run: |
git config user.name github-actions[bot]
git config user.email 41898282+github-actions[bot]@users.noreply.github.com
git remote add gh-token "https://${{ secrets.GITHUB_TOKEN }}@github.com/googleapis/release-please-action.git"
git tag -d v${{ steps.release.outputs.major }} || true
git tag -d v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} || true
git push origin :v${{ steps.release.outputs.major }} || true
git push origin :v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} || true
git tag -a v${{ steps.release.outputs.major }} -m "Release v${{ steps.release.outputs.major }}"
git tag -a v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }} -m "Release v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}"
git push origin v${{ steps.release.outputs.major }}
git push origin v${{ steps.release.outputs.major }}.${{ steps.release.outputs.minor }}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"dev": "ts-node-dev --respawn testServer.ts",
"test": "jest",
"test:watch": "jest --watch",
"tsc": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"build": "tsc -p tsconfig.json && tsc -p tsconfig-cjs.json",
"change": "beachball change",
"publish": "beachball publish -y",
"beachball-bump": "beachball bump",
Expand Down

0 comments on commit 7bdc1db

Please sign in to comment.