Skip to content

Commit

Permalink
fix: github action bug
Browse files Browse the repository at this point in the history
  • Loading branch information
ephrimlawrence committed Feb 26, 2024
1 parent 56a4b9e commit d723a8c
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 12 deletions.
20 changes: 10 additions & 10 deletions .github/workflows/npm-deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,16 +38,16 @@ jobs:
git merge main
git push
- name: Create Release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref }}
body_path: CHANGELOG.md
draft: false
prerelease: false
# - name: Create Release
# uses: actions/create-release@v1
# env:
# GITHUB_TOKEN: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
# with:
# tag_name: ${{ github.ref }}
# release_name: Release ${{ github.ref }}
# body_path: CHANGELOG.md
# draft: false
# prerelease: false

- name: Publish package to npm
env:
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/release-action.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ name: Create

on:
push:
branches:
- stable
# branches:
# - stable
tags:
- 'v*' # Push events to matching v*, i.e. v1.0, v20.15.10

Expand Down

0 comments on commit d723a8c

Please sign in to comment.