1
0
mirror of synced 2024-11-12 00:40:48 +01:00

Add ci workflow for artifacts and pre-releases

Signed-off-by: Julian Orchard <hello@julianorchard.co.uk>
This commit is contained in:
Julian Orchard 2024-02-04 19:38:44 +00:00
parent 4a3ff8bce2
commit 25588be4e1
No known key found for this signature in database
GPG Key ID: 0B16D5D514086EFC

48
.github/workflows/ci.yml vendored Normal file
View File

@ -0,0 +1,48 @@
name: Lindbergh Loader CI
on:
pull_request:
branches:
- master
push:
branches:
- master
# NOTE: Manual releases for now, only currently
# testing with pre-releases and artifacts
# tags:
# - 'v*'
jobs:
ci:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout repo
uses: actions/checkout@v4
- name: Build Docker image and output
uses: docker/build-push-action@v5
with:
context: .
push: false
outputs: type=local,dest=build
- name: Create build artifacts
uses: actions/upload-artifact@v3
if: github.event_name == 'pull_request'
with:
name: lindbergh-loader-${{ github.event.pull_request.head.sha }}
path: build/*
- name: Create pre-release
uses: "marvinpinto/action-automatic-releases@latest"
if: github.event_name == 'push' && github.ref == 'refs/heads/master'
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "latest"
prerelease: true
title: "Lindbergh Loader"
files: build/*