Skip to content

Commit

Permalink
chore: Change release actions trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
ktutnik committed May 18, 2021
1 parent 121f3e1 commit 893b66e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 10 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/publish-canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,14 @@ on:
workflow_dispatch:

schedule:
- cron: '0 0 * * *'
- cron: '* * * * 5'

jobs:
build:

runs-on: ubuntu-latest
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
10 changes: 2 additions & 8 deletions .github/workflows/publish-stable.yml
Original file line number Diff line number Diff line change
@@ -1,23 +1,17 @@
# resources
# https://docs.github.com/en/actions/guides/publishing-nodejs-packages#publishing-packages-to-the-npm-registry
# https://stackoverflow.com/a/65831009/212706
# https://stackoverflow.com/a/63733988/212706

name: "publish stable"

on:
workflow_dispatch:

schedule:
- cron: '* * 1,15 * *'
# schedule:
# - cron: '* * 1,15 * *'

jobs:
build:

runs-on: ubuntu-latest
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
GITHUB_TOKEN: ${{ secrets.PUBLISH_PAT }}
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down

0 comments on commit 893b66e

Please sign in to comment.