Skip to content

Merge pull request #108 from mook-as/remove-networking #317

Merge pull request #108 from mook-as/remove-networking

Merge pull request #108 from mook-as/remove-networking #317

Workflow file for this run

# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
name: Build
on:
- push
- pull_request
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
persist-credentials: false
fetch-depth: 0
- name: Determine VERSION_ID
run: |
tag="$(git describe --tag --abbrev=0)"
echo "VERSION_ID=${tag#v}" >> $GITHUB_ENV
- run: make distro.tar
env:
BUILD_ID: ${{ github.sha }}
- uses: actions/upload-artifact@v4
with:
name: distro
path: distro.tar