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