Skip to content

Commit

Permalink
fix: secrets and variables (#33)
Browse files Browse the repository at this point in the history
  • Loading branch information
nohr-ai authored Oct 2, 2023
1 parent c5fa86c commit f205297
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
types: [ opened, reopened, synchronize ]

env:
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }}
ACCESS_TOKEN: ${{ secrets.MB_ACCESS_TOKEN }}
ORG_ID: ${{ vars.ORG_ID }}
ORG_NAME: ${{ vars.ORG_NAME }}
TEAM_NAME: ${{ vars.TEAM_NAME }}
Expand Down Expand Up @@ -72,7 +72,7 @@ jobs:
uses: actions/checkout@v3
with:
fetch-depth: 0
token: ${{ secrets.MB_TOKEN }}
token: ${{ secrets.PAT }}

- name: Install poetry
uses: abatilo/actions-poetry@v2
Expand All @@ -85,7 +85,7 @@ jobs:
- name: Python Semantic Release
uses: python-semantic-release/python-semantic-release@master
with:
github_token: ${{ secrets.MB_TOKEN }}
github_token: ${{ secrets.PAT }}

- name: Build
run: poetry build
Expand Down

0 comments on commit f205297

Please sign in to comment.