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