Skip to content

Commit

Permalink
ci: 🔧 adding github action to publish package on new release (#20)
Browse files Browse the repository at this point in the history
Replacing publish.yml GitHub action that was not working due to GitHub
permissions on locked branch.
  • Loading branch information
t1agob authored Sep 29, 2023
2 parents 9199521 + 6c81227 commit 2ce1e7f
Show file tree
Hide file tree
Showing 2 changed files with 46 additions and 47 deletions.
46 changes: 46 additions & 0 deletions .github/workflows/on_release_created.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,46 @@
name: On Release Created

on:
release:
types: [created]

jobs:
# check if the release version contains "beta"
check_if_beta:
runs-on: ubuntu-latest
steps:
- name: Check if beta
id: check_if_beta
run: echo ::set-output name=is_beta::$(echo "${{ github.event.release.tag_name}}" | grep -q "beta" && echo "true" || echo "false")

# publish to npm with the tag "beta" if the release version contains "beta" otherwise publish with the tag "latest"
publish_to_npm:
needs: check_if_beta
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Setup Node 18
uses: actions/setup-node@v3
with:
node-version: 18
registry-url: 'https://registry.npmjs.org'
- name: Install yarn
run: corepack enable
- name: Set yarn version to latest stable
run: corepack prepare yarn@stable --activate
- name: Install dependencies
run: yarn install
- name: lint
run: yarn lint
- name: Build
run: yarn build
- name: Replace Action
uses: datamonsters/replace-action@v2
with:
files: ./.yarnrc.yml
replacements: NPM_TOKEN=${{secrets.npm_token}}
- name: Publish beta version to NPM (uses package.json version)
run: yarn npm publish --tag ${{ steps.check_if_beta.outputs.is_beta == 'true' && 'beta' || 'latest' }} --access public


47 changes: 0 additions & 47 deletions .github/workflows/publish.yml

This file was deleted.

0 comments on commit 2ce1e7f

Please sign in to comment.