Skip to content

Commit

Permalink
fixed github auth token which prevented builds
Browse files Browse the repository at this point in the history
  • Loading branch information
shogren committed Dec 4, 2023
1 parent e7ebd94 commit 995f75c
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 6 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/create-release-transactional.yml
Original file line number Diff line number Diff line change
Expand Up @@ -407,7 +407,7 @@ jobs:
- name: Create Release
uses: actions/create-release@latest
env:
GITHUB_TOKEN: ${{ secrets.GIT_HUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SPEC_VERSION: ${{ needs.validate.outputs.version }}
with:
tag_name: ${{ github.ref }}
Expand Down Expand Up @@ -452,7 +452,7 @@ jobs:
git commit -m "Update mailchimp-transactional-node to v${{ env.SPEC_VERSION }}"
git push origin master --force
env:
GITHUB_TOKEN: ${{ secrets.GIT_HUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SPEC_VERSION: ${{ needs.validate.outputs.version }}

- name: Publish → npm → transactional-node
Expand Down Expand Up @@ -499,7 +499,7 @@ jobs:
git tag -a v${{ env.SPEC_VERSION }} -m "Update v${{ env.SPEC_VERSION }}"
git push origin master --follow-tags --force
env:
GITHUB_TOKEN: ${{ secrets.GIT_HUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SPEC_VERSION: ${{ needs.validate.outputs.version }}

publish-ruby:
Expand Down Expand Up @@ -551,7 +551,7 @@ jobs:
git commit -m "Update mailchimp-transactional-ruby to v${{ env.SPEC_VERSION }}"
git push origin master --force
env:
GITHUB_TOKEN: ${{ secrets.GIT_HUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SPEC_VERSION: ${{ needs.validate.outputs.version }}

- name: Publish → RubyGems → transactional-ruby
Expand Down Expand Up @@ -606,7 +606,7 @@ jobs:
git commit -m "Update mailchimp-transactional-python to v${{ env.SPEC_VERSION }}"
git push origin master --force
env:
GITHUB_TOKEN: ${{ secrets.GIT_HUB_TOKEN }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
SPEC_VERSION: ${{ needs.validate.outputs.version }}

- name: Publish → PyPI → transactional-python (test)
Expand Down
3 changes: 3 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,9 @@

## Transactional

### 1.0.54
* Fixing a problem with Github auth token that was preventing builds from being created.

### 1.0.53
* Fixed broken ruby SDK test, updated PHP SDK to send form data via JSON

Expand Down
2 changes: 1 addition & 1 deletion spec/transactional.json
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@
},
"swagger": "2.0",
"info": {
"version": "1.0.53",
"version": "1.0.54",
"title": "Mailchimp Transactional API",
"contact": {
"name": "API Support",
Expand Down

0 comments on commit 995f75c

Please sign in to comment.