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

Commit

Permalink
ci: reimplement artifacts caching
Browse files Browse the repository at this point in the history
  • Loading branch information
El-Fitz committed Aug 23, 2024
1 parent b5635a0 commit 11f13e8
Show file tree
Hide file tree
Showing 2 changed files with 15 additions and 13 deletions.
26 changes: 14 additions & 12 deletions .github/workflows/release-package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,12 +43,13 @@ jobs:
with:
node-version: 22
registry-url: https://npm.pkg.github.com/
# - name: Download build artifacts
# uses: actions/download-artifact@v4
# with:
# name: dist
- run: yarn install --immutable --immutable-cache --check-cache
- run: yarn run tsc
- name: Download build artifacts
uses: actions/download-artifact@v4
with:
name: dist
path: dist
# - run: yarn install --immutable --immutable-cache --check-cache
# - run: yarn run tsc
- run: npm publish
env:
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
Expand All @@ -63,12 +64,13 @@ jobs:
node-version: 22
registry-url: "https://registry.npmjs.org"
scope: "@csbnlu"
# - name: Download build artifacts
# uses: actions/download-artifact@v4
# with:
# name: dist
- run: yarn install --immutable --immutable-cache --check-cache
- run: yarn run tsc
- name: Download build artifacts
uses: actions/download-artifact@v4
with:
name: dist
path: dist
# - run: yarn install --immutable --immutable-cache --check-cache
# - run: yarn run tsc
- run: npm publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@csbnlu/jawks-authorizers-apple-sign-in-pulumi",
"version": "0.0.4",
"version": "0.0.5",
"devDependencies": {
"@pulumi/aws": "^6.49.1",
"@pulumi/aws-apigateway": "^2.6.0",
Expand Down

0 comments on commit 11f13e8

Please sign in to comment.