Skip to content

Commit

Permalink
ci(dotfiles): 🐛 remove lockfile
Browse files Browse the repository at this point in the history
  • Loading branch information
sebastienrousseau committed Feb 19, 2024
1 parent 76913c5 commit be9b797
Showing 1 changed file with 18 additions and 10 deletions.
28 changes: 18 additions & 10 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,61 +5,69 @@ on: [push, pull_request]
jobs:
build:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [21.x]

steps:
- run: echo ${{github.ref}}

- uses: actions/checkout@v3

- uses: pnpm/[email protected]
with:
version: 7

- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"

- name: Install dependencies
run: pnpm install --frozen-lockfile
run: pnpm install --no-frozen-lockfile

- name: Build
run: pnpm run build

publish:
needs: build
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [21.x]

steps:
- uses: actions/checkout@v2

- uses: pnpm/[email protected]
with:
version: 7
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "pnpm"

- name: Install dependencies
run: pnpm install --frozen-lockfile
run: pnpm install --no-frozen-lockfile

- name: Build
run: pnpm run build

- name: Pack
run: pnpm pack

- name: Result
run: ls -al ./dist

- name: Publish to NPM
run: pnpm publish --access public --tag latest --no-git-checks
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Set package registry
run: pnpm config set registry https://npm.pkg.github.com

- name: Github package registry authentication
run: pnpm set //npm.pkg.github.com/:_authToken ${{ secrets.GITHUB_TOKEN }}

- name: Npm registry authentication
run: pnpm set //registry.npmjs.org/:_authToken ${{ secrets.NPM_TOKEN }}

- name: Publish the package to Github package registry
run: pnpm publish --access public --tag latest --no-git-checks
env:
Expand Down

0 comments on commit be9b797

Please sign in to comment.