Skip to content

fix compiler warning #3

fix compiler warning

fix compiler warning #3

Workflow file for this run

name: Build firejail
on:
push:
jobs:
build:
strategy:
matrix:
include:
- arch: amd64
runner: ubuntu-22.04
- arch: arm64
runner: ubuntu-22.04-arm
runs-on: ${{ matrix.runner }}
steps:
- uses: actions/checkout@v4
- name: Build
env:
CI_ARCH: ${{ matrix.arch }}
run: scripts/ci-build.sh
- uses: actions/upload-artifact@v4
with:
name: binaries-${{ matrix.arch }}
path: binaries/
deploy:
needs: build
if: github.ref_type == 'tag'
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- uses: actions/checkout@v4
- uses: actions/download-artifact@v4
with:
path: binaries/
merge-multiple: true
- name: Deploy
env:
GH_TOKEN: ${{ github.token }}
run: scripts/ci-deploy.sh