Skip to content

Commit

Permalink
tmp workflow for fixing release
Browse files Browse the repository at this point in the history
  • Loading branch information
patsissons committed Jan 6, 2025
1 parent f5e07bb commit 5a9e8f8
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/fix-release.workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Fix Release

on:
pull_request:
branches:
- fix-release

jobs:
manual-release:
name: "Manual Release"
runs-on: "ubuntu-latest"
environment: integration-sandbox

steps:
- uses: actions/checkout@v3
- name: Install dependencies
uses: ./.github/actions/install-dependencies
with:
npm-token: ${{ secrets.NPM_TOKEN }}
- run: npm run build
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

0 comments on commit 5a9e8f8

Please sign in to comment.