linuxserver-mods/.gitea/workflows/mods.yml
Renovate Bot 4291131858
All checks were successful
dl / skip-chown (push) Successful in 59s
dl / wireguard-ipv6 (push) Successful in 21s
chore(deps): update docker/build-push-action action to v6
2024-06-18 06:36:50 +00:00

36 lines
1.1 KiB
YAML

name: dl
on: [push]
jobs:
skip-chown:
runs-on: ubuntu-latest
container: docker
steps:
- run: apk add git nodejs
- uses: actions/checkout@v4
- uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- uses: docker/build-push-action@v6
with:
context: skip-chown
push: ${{ gitea.ref_name == gitea.event.repository.default_branch || gitea.ref_type == 'tag' }}
tags: xefir/mods:skip-chown
wireguard-ipv6:
runs-on: ubuntu-latest
container: docker
steps:
- run: apk add git nodejs
- uses: actions/checkout@v4
- uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- uses: docker/build-push-action@v6
with:
context: wireguard-ipv6
push: ${{ gitea.ref_name == gitea.event.repository.default_branch || gitea.ref_type == 'tag' }}
tags: xefir/mods:wireguard-ipv6