Fix docker login token permissions
This commit is contained in:
@@ -43,6 +43,9 @@ jobs:
|
||||
build-push-deploy:
|
||||
runs-on: ubuntu-latest
|
||||
needs: scan
|
||||
permissions:
|
||||
packages: write
|
||||
contents: read
|
||||
steps:
|
||||
- name: Checkout Code
|
||||
uses: actions/checkout@v4
|
||||
@@ -50,7 +53,7 @@ jobs:
|
||||
fetch-depth: 0
|
||||
|
||||
- name: Log in to Gitea Container Registry
|
||||
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login git.khalilaliouich.com -u ${{ github.actor }} --password-stdin
|
||||
run: echo "${{ gitea.token }}" | docker login git.khalilaliouich.com -u ${{ github.actor }} --password-stdin
|
||||
|
||||
- name: Build and Push API
|
||||
run: |
|
||||
|
||||
Reference in New Issue
Block a user