Skip to content

Commit

Permalink
fixing the missing key
Browse files Browse the repository at this point in the history
  • Loading branch information
cjlapao committed Mar 26, 2024
1 parent 0a1fb0c commit afe6234
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/create-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,9 @@ jobs:
id: npm-ci
run: npm ci
- name: Build bundle
run: npm run bundle
run: |
echo $AMPLITUDE_API_KEY
npm run bundle
env:
NODE_ENV: production
AMPLITUDE_API_KEY: ${{ secrets.AMPLITUDE_API_KEY }}
Expand Down Expand Up @@ -67,6 +69,7 @@ jobs:
echo "new_version=$NEW_VERSION" >> "$GITHUB_ENV"
- name: Create PR
if: false
run: |
LAST_PR=$(gh pr list --repo ${{ github.repository }} --limit 1 --state merged --search "Release version" --json number | jq -r '.[0].number')
./.github/workflow_scripts/generate-release-notes.sh ${{ github.repository }} "$LAST_PR" ${{ env.new_version }}
Expand Down

0 comments on commit afe6234

Please sign in to comment.