Skip to content

Commit

Permalink
fix: consolidate version bumps
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesIves committed Jul 5, 2024
1 parent e4798a3 commit 1b7e169
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 62 deletions.
61 changes: 0 additions & 61 deletions .github/workflows/publish.yml

This file was deleted.

56 changes: 55 additions & 1 deletion .github/workflows/version.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Update Major Version Tag 🏷️
name: Update Major Version Tag and Publish to Registry 📦

on:
push:
Expand All @@ -11,3 +11,57 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: nowactions/update-majorver@v1.1.2

update-registries:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
ref: dev

# Setup .npmrc file to publish to npm
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
registry-url: 'https://registry.npmjs.org'
scope: '@jamesives'

- name: Configure Git
run: |
git config user.email "iam@jamesiv.es"
git config user.name "James Ives"
- name: Install Yarn
run: npm install -g yarn

- run: yarn install --frozen-lockfile
- run: yarn build
- run: git stash
- name: Set version to match the tag
run: |
VERSION=${GITHUB_REF#refs/tags/v}
npm version $VERSION -m "Release $VERSION 📣"
env:
GITHUB_REF: ${{ github.ref }}
- run: git push

# Publish to npm
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

# Setup .npmrc file to publish to GitHub Packages
- uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
registry-url: 'https://npm.pkg.github.com'
scope: '@jamesives'

- name: Authenticate with the GitHub Package Registry
run: |
echo "//npm.pkg.github.com:_authToken=${{ secrets.GITHUB_TOKEN }}" > ~/.npmrc
# Publish to GitHub Packages
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 1b7e169

Please sign in to comment.