Skip to content

Commit

Permalink
publish rc
Browse files Browse the repository at this point in the history
  • Loading branch information
davemooreuws committed Dec 18, 2024
1 parent eb374d8 commit 88f2c08
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/publish-rc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Publish RC

on:
workflow_dispatch:
inputs:
tag_name:
description: 'The tag name to use'
required: true

jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Install deps and package
run: npm ci && npm run package
- uses: JasonEtco/build-and-tag-action@v2
with:
tag_name: ${{ github.event.inputs.tag_name }}
env:
GITHUB_TOKEN: ${{ github.token }}

0 comments on commit 88f2c08

Please sign in to comment.