Skip to content
This repository has been archived by the owner on Apr 18, 2024. It is now read-only.

Commit

Permalink
hey neat that's how that works
Browse files Browse the repository at this point in the history
  • Loading branch information
bleaker0x committed Jan 24, 2022
1 parent 0758317 commit a8623c3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publish_dev.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,7 @@ name: Publish (dev)
on:
push:
tags:
- "v*-alpha*"
- "v*-beta*"
- "v*-dev*"

jobs:
tagged_release:
Expand Down Expand Up @@ -42,12 +41,13 @@ jobs:
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
prerelease: false
automatic_release_tag: "dev"
files: |
synapseprotocol-sdk-${{ steps.vars.outputs.tag }}.tgz
LICENSE
README.md
- name: Publish to NPM
run: yarn publish --non-interactive
run: yarn publish --non-interactive --tag dev
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_SERVICE_ACCOUNT_TOKEN }}
6 changes: 3 additions & 3 deletions .github/workflows/publish_mainline.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ on:
push:
tags:
- "v*"
- "!v*-alpha*"
- "!v*-beta*"
- "!v*-dev*"

jobs:
tagged_release:
Expand Down Expand Up @@ -43,12 +42,13 @@ jobs:
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
prerelease: false
automatic_release_tag: "latest"
files: |
synapseprotocol-sdk-${{ steps.vars.outputs.tag }}.tgz
LICENSE
README.md
- name: Publish to NPM
run: yarn publish --non-interactive
run: yarn publish --non-interactive --tag latest
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_SERVICE_ACCOUNT_TOKEN }}

0 comments on commit a8623c3

Please sign in to comment.