Skip to content

more debugging

more debugging #12

Workflow file for this run

name: Linux
# only build on push of tags
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
with:
path: 'repo'
- name: build
uses: addnab/docker-run-action@v3
with:
image: fukamachi/sbcl
options: -v ${{ github.workspace }}:/work
run: |
apt update
apt install -y gcc file
cd /work/repo
./configure --with-lisp=sbcl --enable-distribution
make
ls
pwd
#- name: save artifact
# uses: actions/upload-artifact@v4
# with:
# name: cafeobj-sbcl-x86_64-linux
# path: ${{ github.workspace }}/repo/cafeobj-*-sbcl-*Linux.tar.gz
- name: Release
uses: AButler/[email protected]
with:
files: cafeobj-*-sbcl-*Linux.tar.gz
repo-token: ${{ secrets.GITHUB_TOKEN }}
release-tag: ${{ github.ref_name }}