Skip to content

Update to latest fabric and new intermediary format, update built-in … #16

Update to latest fabric and new intermediary format, update built-in …

Update to latest fabric and new intermediary format, update built-in … #16

Workflow file for this run

name: Pack
on: [push]
jobs:
build:
runs-on: ubuntu-latest
if: ${{ !contains(github.event.head_commit.message, "nobuild") }}

Check failure on line 6 in .github/workflows/pack.yml

View workflow run for this annotation

GitHub Actions / Pack

Invalid workflow file

The workflow is not valid. .github/workflows/pack.yml (Line: 6, Col: 9): Unexpected symbol: '"nobuild"'. Located at position 45 within expression: !contains(github.event.head_commit.message, "nobuild")
steps:
- uses: actions/checkout@v4
- name: Generate Pack
run: ./pack.sh
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: babric-b1.7.3.zip
path: ./babric-b1.7.3.zip
- name: Create Shorthand Hash
id: vars
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: Create Release
uses: softprops/action-gh-release@v2
with:
files: babric-b1.7.3.zip
name: ${{ steps.vars.outputs.sha_short }} (Generated Release)
body: |
Autogenerated release via actions.
https://github.com/Glass-Series/babric-prism-instance/releases/download/${{ steps.vars.outputs.sha_short }}/babric-b1.7.3.zip
tag_name: ${{ steps.vars.outputs.sha_short }}