Skip to content

Commit

Permalink
Change how NPM user access token is being added into our GitHub Actio…
Browse files Browse the repository at this point in the history
…ns workflow environment (#6)
  • Loading branch information
mangs authored Nov 29, 2024
1 parent 30a7a68 commit c5d4cc7
Show file tree
Hide file tree
Showing 4 changed files with 11 additions and 6 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/publishWorkflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,12 +16,12 @@ jobs:
bun-version: "1.1.37"
- uses: aws-actions/configure-aws-credentials@v4
with:
role-to-assume: ${{ vars.AWS_IAM_ROLE_ARN }}
aws-region: ${{ vars.AWS_REGION }}
role-to-assume: ${{ vars.AWS_IAM_ROLE_ARN }}
- uses: aws-actions/aws-secretsmanager-get-secrets@v2
with:
secret-ids: |
NPM_USER_ACCESS_TOKEN,${{ vars.NPM_USER_ACCESS_TOKEN }}
parse-json-secrets: true
secret-ids: NPM_USER,${{ vars.NPM_USER_SECRET_ARN }}
- uses: mangs/simple-release-notes-action@v3
with:
github_token: ${{ secrets.GITHUB_TOKEN }}
Expand Down
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,10 @@
# Changelog

## 1.0.4

- Change how NPM user access token is being added into our GitHub Actions workflow environment
- Upgrade dependencies to latest versions

## 1.0.3

- Fix improper GitHub Actions workflow variable: `vars.NPM_USER_ACCESS_TOKEN_SECRET_ARN` -> `vars.NPM_USER_ACCESS_TOKEN`
Expand Down
Binary file modified bun.lockb
Binary file not shown.
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@babbel/stylelint-config",
"version": "1.0.3",
"version": "1.0.4",
"author": "Eric L. Goldstein <[email protected]>",
"description": "Hierarchical Stylelint configuration collection that intends to be simple to use, layered, and shared with others",
"keywords": [
Expand Down Expand Up @@ -48,9 +48,9 @@
},
"devDependencies": {
"@mangs/bun-utils": "2.33.2",
"marked": "15.0.2",
"marked": "15.0.3",
"prettier": "3.4.1",
"stylelint": "16.10.0"
"stylelint": "16.11.0"
},
"peerDependencies": {
"stylelint": ">=16.0.0"
Expand Down

0 comments on commit c5d4cc7

Please sign in to comment.