Skip to content

Commit

Permalink
fix: fix release (#56)
Browse files Browse the repository at this point in the history
  • Loading branch information
anxolin authored Feb 22, 2024
1 parent 8cc394c commit d8c5458
Show file tree
Hide file tree
Showing 2 changed files with 19 additions and 6 deletions.
23 changes: 18 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,24 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 14

- name: Cache Yarn dependencies
uses: actions/cache@v2
with:
registry-url: 'https://registry.npmjs.org'
scope: '@cowprotocol'
- run: yarn --frozen-lockfile
path: |
node_modules
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- name: Install dependencies
run: yarn install

- run: bash src/workflows/publish.sh
env:
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
NODE_AUTH_TOKEN: ${{ secrets.NODE_AUTH_TOKEN }}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@cowprotocol/app-data",
"version": "2.0.0",
"version": "2.0.1",
"description": "CowProtocol AppData schema definitions",
"type": "module",
"source": "src/index.ts",
Expand Down

0 comments on commit d8c5458

Please sign in to comment.