minecraft-pi-reborn/.gitea/workflows/build.yml

49 lines
1.6 KiB
YAML
Raw Normal View History

2023-06-04 03:48:28 +00:00
name: 'Build'
2023-09-21 00:54:07 +00:00
on:
push:
branches:
- master
tags:
- '*'
2023-10-20 01:11:38 +00:00
tags-ignore:
- flatpak
2023-06-04 03:48:28 +00:00
jobs:
2023-09-21 00:54:07 +00:00
build:
runs-on: ubuntu-latest
container: node:16-buster
steps:
- name: Checkout Repository
uses: actions/checkout@v3
with:
submodules: true
- name: Install CMake
run: |
echo 'deb http://deb.debian.org/debian buster-backports main' > /etc/apt/sources.list.d/backports.list
apt-get update
apt-get install --no-install-recommends -y -t buster-backports cmake
- name: Install Dependencies
run: ./scripts/install-dependencies.sh amd64 armhf arm64
- name: Build
run: |
chmod +x ./scripts/ci/run.sh
./scripts/ci/run.sh
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
2023-09-21 04:25:47 +00:00
path: ./out/*.AppImage*
2023-09-21 02:34:19 +00:00
- name: Setup Go
uses: actions/setup-go@v4
2023-09-21 16:55:40 +00:00
if: startsWith(github.ref, 'refs/tags/')
2023-09-21 02:34:19 +00:00
with:
go-version: '>=1.20.1'
2023-09-21 00:54:07 +00:00
- name: Create Release
uses: https://gitea.com/actions/release-action@main
if: startsWith(github.ref, 'refs/tags/')
with:
2023-09-21 04:25:47 +00:00
files: ./out/*.AppImage*
2023-09-21 00:54:07 +00:00
api_key: ${{ secrets.RELEASE_TOKEN }}
2023-09-21 16:55:40 +00:00
title: v${{ github.ref_name }}
body: "[View Changelog](https://gitea.thebrokenrail.com/minecraft-pi-reborn/minecraft-pi-reborn/src/branch/master/docs/CHANGELOG.md)"