6arelyFuture 9d640de194
All checks were successful
Build / build-linux (push) Successful in 1m4s
build: attempt to create release from a Docker container
2024-06-18 19:15:33 +02:00

32 lines
693 B
YAML

name: Build
on: [push]
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- name: Check out files
uses: actions/checkout@v4
with:
submodules: true
fetch-depth: 0
lfs: false
- name: Create release
uses: addnab/docker-run-action@v3
with:
image: ubuntu:noble
options: --volumes-from=${{ env.JOB_CONTAINER_NAME }}
run: |
cd ${{ github.workspace }}
export TZ=America/Los_Angeles
./.gitea/scripts/ci.sh
- name: Upload release
uses: actions/upload-artifact@v3
with:
name: release
path: |
build