Skip to content

Merge pull request #62 from ryo-arima/develop #45

Merge pull request #62 from ryo-arima/develop

Merge pull request #62 from ryo-arima/develop #45

Workflow file for this run

name: Release
on:
push:
branches: [ "main" ]
jobs:
base-deb-build:
runs-on: ubuntu-latest
container: ryoarima/ubuntu-base:latest
steps:
- uses: actions/checkout@v4
- name: Set up a Git safe directory
run: git config --global --add safe.directory "${GITHUB_WORKSPACE}"
- name: Build Bin,Deb & Publish
env:
GH_TOKEN: ${{ secrets.MARK1_TOKEN }}
run: |
make build-bin
make build-deb
make push-deb
base-rpm-build:
runs-on: ubuntu-latest
container: ryoarima/rocky-base:latest
steps:
- uses: actions/checkout@v4
- name: Set up a Git safe directory
run: git config --global --add safe.directory "${GITHUB_WORKSPACE}"
- name: Build Bin,Rpm & Publish
env:
GH_TOKEN: ${{ secrets.MARK1_TOKEN }}
run: |
make build-bin
make build-rpm
make push-rpm
arm-deb-build:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
qemu-platforms:
- arm64,arm
container:
image: ryoarima/ubuntu-arm:latest
steps:
- uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
with:
platforms: ${{ matrix.qemu-platforms }}
- name: Set up a Git safe directory
run: git config --global --add safe.directory "${GITHUB_WORKSPACE}"
- name: Build Bin,Deb & Publish
env:
GH_TOKEN: ${{ secrets.MARK1_TOKEN }}
run: |
make build-bin
make build-deb
make push-deb