Skip to content

Commit

Permalink
[CI] Deploy CI
Browse files Browse the repository at this point in the history
  • Loading branch information
forest-extension-admin committed Mar 5, 2024
1 parent 6d8c46b commit 90fe3fb
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions .github/workflows/dispatch_release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ on:
description: 'choose container architecture'
default: linux/amd64
options:
- "linux/amd64"
- "linux/arm64"
- "linux/amd64"
- "linux/arm64"


env:
Expand Down Expand Up @@ -65,7 +65,7 @@ jobs:
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.GH_TOKEN }}
token: ${{ secrets.PAT_TOKEN }}
- name: update version file # That is used where the master_push actions
run: |
echo ${{ env.VERSION }} > src/VERSION
Expand All @@ -77,7 +77,7 @@ jobs:
- name: push changes
uses: ad-m/github-push-action@master
with:
github_token: ${{ secrets.GH_TOKEN }}
github_token: ${{ secrets.PAT_TOKEN }}
branch: master

tagging:
Expand All @@ -86,7 +86,7 @@ jobs:
steps:
- uses: actions/checkout@v2
with:
token: ${{ secrets.GH_TOKEN }}
token: ${{ secrets.PAT_TOKEN }}
- name: git tagging
run: |
git tag ${{ env.VERSION }}
Expand All @@ -106,7 +106,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v3
with:
token: ${{ secrets.GH_TOKEN }}
token: ${{ secrets.PAT_TOKEN }}

- name: get service name
run: |
Expand All @@ -117,7 +117,7 @@ jobs:
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GH_TOKEN }}
password: ${{ secrets.PAT_TOKEN }}

- name: Extract metadata (tags, labels) for Docker
id: meta
Expand Down

0 comments on commit 90fe3fb

Please sign in to comment.