RetroDECK/.github/workflows/cooker.yml

66 lines
2.5 KiB
YAML
Raw Normal View History

2022-04-05 13:23:53 +00:00
# Due to the changes to the build systems actually on the branch integrated, this script will fail on main until merged
name: Cooker
# Controls when the workflow will run
on:
# Triggers the workflow on push or pull request events but only for the main branch
push:
branches: [ '*' ]
pull_request:
branches: [ '*' ]
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
2022-04-06 13:16:24 +00:00
# This workflow contains a single job called "build"
2022-04-05 13:23:53 +00:00
build_cooker_snap:
2022-04-06 13:16:24 +00:00
# The type of runner that the job will run on
2022-04-05 13:23:53 +00:00
runs-on: ubuntu-latest
2022-04-06 13:16:24 +00:00
# Steps represent a sequence of tasks that will be executed as part of the job
2022-04-05 13:23:53 +00:00
steps:
2022-04-06 13:16:24 +00:00
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
2022-04-05 13:23:53 +00:00
- uses: actions/checkout@v3
2022-04-06 13:16:24 +00:00
2022-04-05 13:23:53 +00:00
- name: Prepearing enviornment
run: |
2022-04-06 08:17:10 +00:00
git submodule init
git submodule update
2022-04-06 13:16:24 +00:00
sudo add-apt-repository ppa:alexlarsson/flatpak
sudo apt-get update
2022-04-06 13:20:03 +00:00
sudo apt install flatpak flatpak-builder p7zip-full
2022-04-06 13:16:24 +00:00
sudo flatpak remote-add --if-not-exists flathub https://flathub.org/repo/flathub.flatpakrepo
2022-04-07 01:49:18 +00:00
sudo flatpak install -y org.kde.Sdk//5.15-21.08 org.kde.Platform//5.15-21.08 io.qt.qtwebengine.BaseApp/x86_64/5.15-21.08
2022-04-05 13:23:53 +00:00
# Runs a set of commands using the runners shell
2022-04-06 13:16:24 +00:00
- name: Building flatpak
run: |
sudo flatpak-builder --user --install --force-clean retrodeck-flatpak com.xargon.retrodeck.yml
sudo flatpak-builder --repo=local --force-clean localrepo com.xargon.retrodeck.yml
sudo flatpak build-bundle local RetroDECK.flatpak com.xargon.retrodeck
2022-04-05 13:23:53 +00:00
2022-04-06 15:48:34 +00:00
- name: Get date for artifacts
id: date
run: echo "::set-output name=date::$(date +'%Y%m%d_%H%M')"
2022-04-05 13:23:53 +00:00
- name: Publish the flatpak in a new cooker release
uses: ncipollo/release-action@v1
with:
2022-04-06 15:48:34 +00:00
tag: "${{ steps.date.outputs.date }}"
2022-04-05 13:23:53 +00:00
body: |
# Release Notes (Cooker)
This is a cooker snapshot based on the commit: ${{ github.event.repository.full_name }}@${{github.sha}}.
2022-04-07 05:00:59 +00:00
Cooker channel is provided for the community to test fixes and explore new functionality.
Please DO NOT open issues or ask support on this build.
2022-04-05 13:23:53 +00:00
artifacts: "RetroDECK.flatpak"
allowUpdates: true
prerelease: true
draft: false
token: ${{ secrets.TRIGGER_BUILD_TOKEN }}
repo: RetroDECK-cooker