Skip to content

Commit a3ddd6c

Browse files
authored
fix: tag weirdness (#355)
* fix: tag weirdness * fix * fix * fix
1 parent b81e707 commit a3ddd6c

File tree

1 file changed

+7
-8
lines changed

1 file changed

+7
-8
lines changed

Diff for: .github/workflows/release.yml

+7-8
Original file line numberDiff line numberDiff line change
@@ -37,12 +37,13 @@ jobs:
3737
- name: Create new package version
3838
run: npm version "${{ env.TAG }}"
3939

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

4748
- name: Create Tag and Release
4849
uses: ncipollo/release-action@v1
@@ -52,6 +53,4 @@ jobs:
5253
name: "httpsnippet ${{ env.TAG }} 📦"
5354
generateReleaseNotes: true
5455
prerelease: false
55-
draft: false
56-
env:
57-
GITHUB_TOKEN: ${{ secrets.PAT_INSOMNIA_INFRA }}
56+
draft: false

0 commit comments

Comments
 (0)