Compare commits
3 Commits
c2681de784
...
b548de87b2
Author | SHA1 | Date | |
---|---|---|---|
b548de87b2 | |||
35d2b5fc38 | |||
a3832a3fa7 |
@ -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