Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/main'
Browse files Browse the repository at this point in the history
  • Loading branch information
maphel committed Sep 4, 2023
2 parents 892e0fb + f653a47 commit a8f2073
Show file tree
Hide file tree
Showing 3 changed files with 73 additions and 67 deletions.
66 changes: 0 additions & 66 deletions .github/workflows/publish.yml

This file was deleted.

72 changes: 72 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
name: Release

on:
push:
tags:
- 'v*'

jobs:
publish:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
registry-url: 'https://registry.npmjs.org'

- name: Install Yarn 3 (Berry)
run: npm install -g yarn@berry

- name: Set up Yarn 3
run: yarn set version berry

- name: Install dependencies
run: yarn install --immutable

- name: Build
run: yarn build

- name: Exclude source maps
run: rm -rf dist/**/*.map

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

update-master-to-tagged-version:
runs-on: ubuntu-latest

steps:
- name: Checkout main
uses: actions/checkout@v3
with:
ref: main
fetch-depth: 0

- name: Fetch tags
run: git fetch --tags

- name: Extract version from latest Git tag or use default
run: |
TAG_NAME=$(git tag | tail -n 1) # Fetch the latest tag
if [ -z "$TAG_NAME" ]; then # Check if TAG_NAME is empty
echo "No tags found. Using default version 1.0.0."
VERSION="1.0.0"
else
VERSION=${TAG_NAME#*v}
fi
npm version $VERSION --no-git-tag-version
- name: Commit and push updated package.json on main
run: |
git config --local user.email "${{ secrets.GIT_USER_EMAIL }}"
git config --local user.name "maphel"
git add package.json
git commit -m "Update package.json version to $VERSION on main"
git push origin main
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@maphel/classnames",
"version": "1.0.2",
"version": "1.0.9",
"description": "A utility for generating class names",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
Expand Down

0 comments on commit a8f2073

Please sign in to comment.