Skip to content

fix(zupass-gatekeeper): event id was stored at the wrong index #4934

fix(zupass-gatekeeper): event id was stored at the wrong index

fix(zupass-gatekeeper): event id was stored at the wrong index #4934

Workflow file for this run

name: CI
on:
push:
branches: [dev]
pull_request:
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
e2e:
uses: ./.github/workflows/reusable-e2e.yml
npm-publish:
needs: e2e
if: ${{ github.event_name == 'push' }}
runs-on: ubuntu-22.04
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
registry-url: "https://registry.npmjs.org"
- name: Install
run: |
pnpm install --frozen-lockfile --prefer-offline
- name: Build
run: |
pnpm run build
- name: Publish Project
run: |
# Prevent `git commit error` when running `lerna version`
# It creates an ephemeral commit that will not be pushed to GitHub
git config --global user.email "[email protected]"
git config --global user.name "Your Name"
lerna version 0.0.0-ci.$(git rev-parse --short HEAD) --no-push --yes --exact
lerna publish from-git --dist-tag ci --yes
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}