Skip to content
This repository has been archived by the owner on Oct 7, 2024. It is now read-only.

rework CI actions

rework CI actions #1

Workflow file for this run

name: Build OpenHack
on:
push:
branches:
- "**"
pull_request:
branches:
- "**"
jobs:
build:
strategy:
fail-fast: false
matrix:
config:
- name: Standalone
ci-file: ci-standalone.yml
- name: Geode
ci-file: ci-geode.yml
name: OpenHack Build
steps:
- uses: ./.github/workflows/${{ matrix.config.ci-file }}

Check failure on line 24 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / Build OpenHack

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 24, Col: 15): Unrecognized named-value: 'matrix'. Located at position 1 within expression: matrix.config.ci-file .github/workflows/build.yml (Line: 13, Col: 5): Required property is missing: runs-on
with:
target: ${{ matrix.config.name }}
package:
name: Create nigtly release
runs-on: ubuntu-latest
needs: ['build']
steps:
- uses: actions/download-artifact@v3
with:
name: OpenHack-Standalone
path: ${{ github.workspace }}/bin
- uses: actions/download-artifact@v3
with:
name: OpenHack-Geode
path: ${{ github.workspace }}/bin
- name: Prepare standalone zip
run: |
mkdir -p ${{ github.workspace }}/bin/standalone
cp -r ${{ github.workspace }}/bin/openhack ${{ github.workspace }}/bin/standalone/openhack
cp ${{ github.workspace }}/bin/xinput9_1_0.dll ${{ github.workspace }}/bin/standalone/xinput9_1_0.dll
- name: Package standalone
run: |
7z a -tzip ${{ github.workspace }}/bin/OpenHack-Nightly.zip ${{ github.workspace }}/bin/standalone
- name: Create nightly release
uses: andelf/nightly-release@main
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: nightly
name: 'Development Release'
body: |
This is a nightly build of OpenHack for commit ${{ github.sha }}.\nYou can use this build to test the latest features and changes.
files: |
${{ github.workspace }}/bin/OpenHack-Nightly.zip
${{ github.workspace }}/bin/prevter.openhack.geode
${{ github.workspace }}/bin/prevter.openhack.pdb
${{ github.workspace }}/bin/xinput9_1_0.dll