Skip to content

Commit

Permalink
Maybe fix garbo-lib
Browse files Browse the repository at this point in the history
  • Loading branch information
gausie committed Dec 4, 2023
1 parent 84201fb commit e4997a4
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/garbo-lib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,9 +17,6 @@ jobs:
node-version: "18.x"
registry-url: "https://registry.npmjs.org"

- name: Install
run: yarn workspace garbo-lib install

- name: Check publish status
id: check
run: |
Expand All @@ -29,7 +26,10 @@ jobs:
- name: Publish if necessary
if: ${{ steps.check.outputs.status == '404' }}
run: yarn workspace garbo-lib npm publish
run: |
yarn workspace garbo-lib install
yarn workspace garbo-lib build
yarn workspace garbo-lib npm publish
env:
STATUS: ${{ steps.check.outputs.status }}
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
2 changes: 1 addition & 1 deletion packages/garbo-lib/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "garbo-lib",
"version": "0.0.2",
"version": "0.0.3",
"license": "MIT",
"repository": "https://github.com/loathers/garbage-collector.git",
"description": "A library for sequencing turns resource-optimally",
Expand Down

0 comments on commit e4997a4

Please sign in to comment.