Skip to content

Commit

Permalink
chore: output semantic release info
Browse files Browse the repository at this point in the history
  • Loading branch information
neilcampbell committed Aug 31, 2023
1 parent aa6251a commit 07929ab
Showing 1 changed file with 51 additions and 3 deletions.
54 changes: 51 additions & 3 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,9 @@
name: Pull Request

on:
pull_request:
branches: [main]
push:
branches:
- semantic-test

permissions:
contents: read
Expand All @@ -11,7 +12,6 @@ jobs:
pull_request:
uses: makerxstudio/shared-config/.github/workflows/node-ci.yml@main
with:
node-version: 18.x
working-directory: ./
run-commit-lint: true
run-build: true
Expand All @@ -37,3 +37,51 @@ jobs:
git add -N .
# Print changed files and error out if there are changes after generating docs
git diff --exit-code --name-only
build:
name: Build
uses: makerxstudio/shared-config/.github/workflows/node-build-zip.yml@main
needs:
- pull_request
- check_docs
with:
node-version: 18.x
build-path: dist
artifact-name: package

release:
name: Release
needs: build
runs-on: ubuntu-latest
steps:
- name: Clone repository
uses: actions/checkout@v3
with:
fetch-depth: 0

# semantic-release needs node 18
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x

- name: Download built package
uses: actions/download-artifact@v3
with:
name: package
path: artifacts

- name: Unzip package
shell: bash
run: |
mkdir -p dist
unzip -q "artifacts/package.zip" -d dist
- name: Install dependencies to get semantic release components and plugins
run: npm ci --ignore-scripts

- name: 'Semantic release'
run: npx semantic-release --dry-run --debug
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit 07929ab

Please sign in to comment.