Skip to content

chore: Bump version to 1.0.3 #95

chore: Bump version to 1.0.3

chore: Bump version to 1.0.3 #95

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: x86_64
- arch: x86
- arch: armhf
- arch: aarch64
- arch: armv7
- arch: ppc64le
- arch: s390x
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@v4
with:
name: dpitunnel-${{ matrix.arch }}
path: build/dpitunnel
- name: Upload Binary to Release
if: github.event_name == 'release'
uses: svenstaro/[email protected]
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: build/dpitunnel
asset_name: dpitunnel-${{ matrix.arch }}
tag: ${{ github.ref }}