Skip to content

Commit

Permalink
feat(CICD): use PAT instead of GITHUB_TOKEN
Browse files Browse the repository at this point in the history
  • Loading branch information
WasinUddy committed Nov 11, 2024
1 parent 9a70ceb commit 4763159
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-montainer-preview-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Set up Python 3.11
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.11
Expand Down Expand Up @@ -54,7 +54,7 @@ jobs:
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
password: ${{ secrets.PAT }}


- name: Build Montainer (preview) Image
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/build-montainer-stable-image.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
- name: Checkout Repository
uses: actions/checkout@v4

- name: Set up Python 3.11
- name: Set up Python 3.12
uses: actions/setup-python@v5
with:
python-version: 3.12
Expand Down Expand Up @@ -52,7 +52,7 @@ jobs:
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
password: ${{ secrets.PAT }}


- name: Build Montainer (Stable) Image
Expand Down

0 comments on commit 4763159

Please sign in to comment.