testing gh action #8
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
name: Node.js Package | ||
on: | ||
push: | ||
branches: ["main"] | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
with: | ||
fetch-depth: 0 # Necessary so we have commit history to compare to | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
- run: npm ci | ||
- run: npm test | ||
- name: Check if version has been updated | ||
id: check | ||
uses: EndBug/version-check@v2 | ||
- name: Log when changed | ||
if: steps.check.outputs.changed == 'true' | ||
run: 'echo "Version change found in commit ${{ steps.check.outputs.commit }}! New version: ${{ steps.check.outputs.version }} (${{ steps.check.outputs.type }})"' | ||
- name: Log when unchanged | ||
if: steps.check.outputs.changed == 'false' | ||
run: 'echo "No version change :/"' | ||
release: | ||
needs: build | ||
if: steps.check.outputs.changed == 'true' | ||
Check failure on line 32 in .github/workflows/release-package.yml
|
||
name: Release pushed tag | ||
runs-on: ubuntu-latest | ||
permissions: | ||
contents: write | ||
steps: | ||
- name: Create release | ||
if: ${{ ! startsWith(github.ref, 'refs/tags/')}} | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
tag: ${{ github.ref_name }} | ||
run: | | ||
gh release create "$tag" \ | ||
--repo="$GITHUB_REPOSITORY" \ | ||
--title="${tag#v}" \ | ||
--generate-notes | ||
publish-gpr: | ||
needs: build | ||
if: steps.check.outputs.changed == 'true' | ||
runs-on: ubuntu-latest | ||
permissions: | ||
packages: write | ||
contents: read | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
registry-url: https://npm.pkg.github.com/ | ||
- run: npm ci | ||
- run: npm publish | ||
env: | ||
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} |