Skip to content

Commit

Permalink
chore: add workflow for making stable releases
Browse files Browse the repository at this point in the history
  • Loading branch information
jasonkuhrt committed Jan 20, 2022
1 parent 12c2e8d commit f5f7286
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/release-stable.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Release Stable

on: workflow_dispatch

jobs:
bump-version:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/setup-node@v2
with:
node-version: '14'
cache: 'yarn'
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Release
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
git config user.name "GitHub Actions Bot"
git config user.email "<>"
yarn -s dripip stable

0 comments on commit f5f7286

Please sign in to comment.