Skip to content

Commit

Permalink
fix: tag weirdness (#355)
Browse files Browse the repository at this point in the history
* fix: tag weirdness

* fix

* fix

* fix
  • Loading branch information
filfreire authored May 17, 2024
1 parent b81e707 commit a3ddd6c
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,12 +37,13 @@ jobs:
- name: Create new package version
run: npm version "${{ env.TAG }}"

- name: Merge version commit into master
- name: DEBUG see tags
run: |
remote_repo="https://${GITHUB_ACTOR}:${RELEASE_GH_TOKEN}@github.com/${GITHUB_REPOSITORY}.git"
git push "${remote_repo}"
env:
RELEASE_GH_TOKEN: ${{ secrets.PAT_INSOMNIA_INFRA }}
git tag --list
git remote -v
- name: Merge version commit into master
run: git push origin ${{ env.TAG }}

- name: Create Tag and Release
uses: ncipollo/release-action@v1
Expand All @@ -52,6 +53,4 @@ jobs:
name: "httpsnippet ${{ env.TAG }} 📦"
generateReleaseNotes: true
prerelease: false
draft: false
env:
GITHUB_TOKEN: ${{ secrets.PAT_INSOMNIA_INFRA }}
draft: false

0 comments on commit a3ddd6c

Please sign in to comment.