Skip to content

Commit

Permalink
Hard-code tag for now
Browse files Browse the repository at this point in the history
  • Loading branch information
dariober committed May 23, 2024
1 parent 5122936 commit 7721a26
Showing 1 changed file with 2 additions and 5 deletions.
7 changes: 2 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,6 @@ on:
push:
# tags: 'v[0-9]'

env:
tag: devel

jobs:
publish-npm:
name: Publish to npm
Expand All @@ -23,11 +20,11 @@ jobs:
- run: yarn --immutable
- run: |
yarn config set npmAuthToken ${{ secrets.NPM_TOKEN }}
yarn workspaces foreach --no-private --all npm publish --tolerate-republish --tag $tag
yarn workspaces foreach --no-private --all npm publish --tolerate-republish --tag devel
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
publish-docker:
name: Build and push Docker image
uses: ./.github/workflows/build-and-push-docker.yml
with:
tag: '${{ tag }}'
tag: devel

0 comments on commit 7721a26

Please sign in to comment.