Compare commits
2 Commits
32520d32aa
...
bc1a87c5c0
Author | SHA1 | Date |
---|---|---|
TheAssassin | bc1a87c5c0 | |
TheAssassin | f8fbdf02bf |
|
@ -3,17 +3,12 @@ on: [push]
|
|||
|
||||
env:
|
||||
REGISTRY: git.newpipe-ev.de
|
||||
IMAGE_NAME: ${{ gitea.repository }}
|
||||
|
||||
IMAGE_NAME: ${{ gitea.repository }}:latest
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
|
||||
permissions:
|
||||
contents: read
|
||||
packages: write
|
||||
|
||||
steps:
|
||||
- uses: actions/checkout@v3
|
||||
|
||||
|
@ -21,8 +16,8 @@ jobs:
|
|||
uses: docker/login-action@v3
|
||||
with:
|
||||
registry: ${{ env.REGISTRY }}
|
||||
username: ${{ gitea.actor }}
|
||||
password: ${{ secrets.GITHUB_TOKEN }}
|
||||
username: ${{ gitea.repository_owner }}
|
||||
password: ${{ secrets.GITEA_TOKEN }}
|
||||
|
||||
- name: Extract metadata (tags, labels) for Docker
|
||||
id: meta
|
||||
|
@ -37,3 +32,5 @@ jobs:
|
|||
push: true
|
||||
tags: ${{ steps.meta.outputs.tags }}
|
||||
labels: ${{ steps.meta.outputs.labels }}
|
||||
platforms: |
|
||||
linux/amd64
|
||||
|
|
Loading…
Reference in New Issue