mirror of
https://github.com/djhackersdev/bemanitools.git
synced 2025-02-15 10:22:34 +01:00
40 lines
886 B
YAML
40 lines
886 B
YAML
|
name: "Build bemanitools"
|
||
|
|
||
|
on:
|
||
|
push:
|
||
|
branches:
|
||
|
- master
|
||
|
|
||
|
jobs:
|
||
|
build:
|
||
|
runs-on: "ubuntu-22.04"
|
||
|
steps:
|
||
|
- name: "Checkout repository"
|
||
|
uses: "actions/checkout@v2"
|
||
|
|
||
|
- name: "Install prerequisites"
|
||
|
run: |
|
||
|
sudo apt-get update
|
||
|
sudo apt-get install -y runc containerd docker.io
|
||
|
|
||
|
- name: "Build"
|
||
|
run: |
|
||
|
make build-docker
|
||
|
|
||
|
# Do some unpacking of the dist zip. Artifact upload repackages stuff
|
||
|
- name: "Prepare artifact package"
|
||
|
run: |
|
||
|
mkdir artifact
|
||
|
cd artifact
|
||
|
unzip ../build/bemanitools.zip
|
||
|
cd ..
|
||
|
|
||
|
- name: "Upload artifact"
|
||
|
uses: "actions/upload-artifact@v2"
|
||
|
with:
|
||
|
name: bemanitools-${{ github.sha }}
|
||
|
retention-days: 90
|
||
|
if-no-files-found: "error"
|
||
|
path: |
|
||
|
artifact/**
|