2024-05-15 18:36:19 +00:00
|
|
|
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 }}
|
2024-06-18 06:36:50 +00:00
|
|
|
- uses: docker/build-push-action@v6
|
2024-05-15 18:36:19 +00:00
|
|
|
with:
|
2024-05-15 18:42:55 +00:00
|
|
|
context: skip-chown
|
2024-05-15 18:50:04 +00:00
|
|
|
push: ${{ gitea.ref_name == gitea.event.repository.default_branch || gitea.ref_type == 'tag' }}
|
2024-05-15 18:36:19 +00:00
|
|
|
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 }}
|
2024-06-18 06:36:50 +00:00
|
|
|
- uses: docker/build-push-action@v6
|
2024-05-15 18:36:19 +00:00
|
|
|
with:
|
2024-05-15 18:42:55 +00:00
|
|
|
context: wireguard-ipv6
|
2024-05-15 18:50:04 +00:00
|
|
|
push: ${{ gitea.ref_name == gitea.event.repository.default_branch || gitea.ref_type == 'tag' }}
|
2024-05-15 18:36:19 +00:00
|
|
|
tags: xefir/mods:wireguard-ipv6
|