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

50 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-11-24 08:07:06 +00:00
- '!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
2023-11-24 17:09:21 +00:00
# Dependencies
- name: Install Go
uses: actions/setup-go@v4
with:
go-version: '>=1.20.1'
2023-09-21 00:54:07 +00:00
- 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
2023-11-24 17:09:21 +00:00
# Build
2023-09-21 00:54:07 +00:00
- name: Build
2023-11-24 17:09:21 +00:00
run: ./scripts/package-all.sh
- name: Test
run: ./scripts/test.sh
2023-09-21 00:54:07 +00:00
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
2023-09-21 04:25:47 +00:00
path: ./out/*.AppImage*
2023-11-24 17:09:21 +00:00
# Create Release
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)"