Skip to content

feat: Add version

feat: Add version #52

Workflow file for this run

name: Build
on:
release:
types: [created]
push:
pull_request:
types: [opened, edited]
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- arch: amd64
- arch: x86
- arch: armhf
- arch: arm64
name: Build on ${{ matrix.arch }}
steps:
- name: Git Checkout
uses: actions/checkout@v4
with:
submodules: 'true'
- name: Setup Docker
run: |
docker run --rm --privileged multiarch/qemu-user-static:register --reset --credential yes
- name: Build in Docker
run: |
docker run --workdir /github/workspace --rm --entrypoint "./.github/scripts/build.sh" -v "$(pwd)":"/github/workspace" multiarch/alpine:${{ matrix.arch }}-edge
- name: Upload Binary
if: github.event_name != 'release'
uses: actions/upload-artifact@v3
with:
name: dpitunnel-${{ matrix.arch }}
path: build/DPITunnel-exec
- name: Upload Binary to Release
if: github.event_name == 'release'
uses: svenstaro/[email protected]
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: build/DPITunnel-exec
asset_name: dpitunnel-${{ matrix.arch }}
tag: ${{ github.ref }}