Compare commits
6 Commits
Author | SHA1 | Date | |
---|---|---|---|
35000e3f02 | |||
fb5080e1c8 | |||
b548de87b2 | |||
35d2b5fc38 | |||
a3832a3fa7 | |||
c2681de784 |
@ -11,13 +11,6 @@ jobs:
|
|||||||
- name: Checkout code
|
- name: Checkout code
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
- name: Read version
|
|
||||||
id: version
|
|
||||||
run: |
|
|
||||||
VERSION=$(node -p "require('./package.json').version")
|
|
||||||
BUILD_VERSION="${VERSION}.${GITHUB_RUN_NUMBER}"
|
|
||||||
echo "build_version=${BUILD_VERSION}" >> $GITHUB_OUTPUT
|
|
||||||
|
|
||||||
- name: Set up QEMU
|
- name: Set up QEMU
|
||||||
uses: docker/setup-qemu-action@v3
|
uses: docker/setup-qemu-action@v3
|
||||||
|
|
||||||
@ -43,5 +36,5 @@ jobs:
|
|||||||
NODE_ENV=production
|
NODE_ENV=production
|
||||||
tags: |
|
tags: |
|
||||||
dcr.behzadan.com/reza/wireguard-3proxy:latest
|
dcr.behzadan.com/reza/wireguard-3proxy:latest
|
||||||
dcr.behzadan.com/reza/wireguard-3proxy:${{ steps.version.outputs.BUILD_VERSION }}
|
dcr.behzadan.com/reza/wireguard-3proxy:${{ gitea.ref_name }}
|
||||||
|
|
46
.gitea/workflows/multi-arch-gitea.yml
Normal file
46
.gitea/workflows/multi-arch-gitea.yml
Normal file
@ -0,0 +1,46 @@
|
|||||||
|
name: Build and Push to Gitea Artifact Registry
|
||||||
|
|
||||||
|
on:
|
||||||
|
workflow_dispatch:
|
||||||
|
|
||||||
|
env:
|
||||||
|
IMAGE_NAME: git.behzadan.com/reza/wireguard-3proxy
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
docker:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
packages: write
|
||||||
|
contents: read
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Set up QEMU
|
||||||
|
uses: docker/setup-qemu-action@v3
|
||||||
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
with:
|
||||||
|
buildkitd-flags: --allow-insecure-entitlement network.host
|
||||||
|
|
||||||
|
- name: Login to Gitea Artifact Registry
|
||||||
|
uses: docker/login-action@v3
|
||||||
|
with:
|
||||||
|
registry: git.behzadan.com
|
||||||
|
username: ${{ github.actor }}
|
||||||
|
password: ${{ secrets.GITEA_TOKEN }}
|
||||||
|
|
||||||
|
- name: Build and push
|
||||||
|
uses: docker/build-push-action@v5
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
platforms: linux/amd64,linux/arm64
|
||||||
|
push: true
|
||||||
|
build-args: |
|
||||||
|
NODE_ENV=production
|
||||||
|
tags: |
|
||||||
|
git.behzadan.com/reza/wireguard-3proxy:latest
|
||||||
|
git.behzadan.com/reza/wireguard-3proxy:${{ github.event.release.tag_name }}
|
||||||
|
|
@ -1,8 +1,7 @@
|
|||||||
name: Build and Publish Docker Image (Multi-Arch)
|
name: Build and Publish Docker Image (Multi-Arch)
|
||||||
|
|
||||||
on:
|
on:
|
||||||
release:
|
workflow_dispatch:
|
||||||
types: [published]
|
|
||||||
|
|
||||||
env:
|
env:
|
||||||
IMAGE_NAME: rbehzadan/wireguard-3proxy
|
IMAGE_NAME: rbehzadan/wireguard-3proxy
|
44
.github/workflows/ghcr.yaml
vendored
Normal file
44
.github/workflows/ghcr.yaml
vendored
Normal file
@ -0,0 +1,44 @@
|
|||||||
|
name: Build and Publish Docker Image (Multi-Arch)
|
||||||
|
|
||||||
|
on:
|
||||||
|
release:
|
||||||
|
types: [published]
|
||||||
|
|
||||||
|
env:
|
||||||
|
IMAGE_NAME: ghcr.io/${{ github.repository_owner }}/wireguard-3proxy
|
||||||
|
IMAGE_TAG: ${{ github.event.release.tag_name }}
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-and-publish:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
permissions:
|
||||||
|
contents: write
|
||||||
|
packages: write
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Set up QEMU
|
||||||
|
uses: docker/setup-qemu-action@v3
|
||||||
|
|
||||||
|
- name: Set up Docker Buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
|
- name: Login to GitHub Container Registry
|
||||||
|
uses: docker/login-action@v2
|
||||||
|
with:
|
||||||
|
registry: ghcr.io
|
||||||
|
username: ${{ github.actor }}
|
||||||
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
- name: Build and push
|
||||||
|
uses: docker/build-push-action@v5
|
||||||
|
with:
|
||||||
|
context: .
|
||||||
|
platforms: linux/amd64,linux/arm64
|
||||||
|
push: true
|
||||||
|
tags: |
|
||||||
|
${{ env.IMAGE_NAME }}:latest
|
||||||
|
${{ env.IMAGE_NAME }}:${{ env.IMAGE_TAG }}
|
||||||
|
|
Loading…
Reference in New Issue
Block a user