Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release Creation
name: Build and Publish Release

on:
release:
Expand Down Expand Up @@ -30,7 +30,7 @@ jobs:
id: sub_manifest_link_version
uses: microsoft/variable-substitution@v1
with:
files: ./release/system.json
files: ./system.json
env:
version: ${{steps.get_version.outputs.version-without-v}}
url: https://github.com/${{github.repository}}
Expand All @@ -50,29 +50,29 @@ jobs:
draft: ${{ github.event.release.unpublished }}
prerelease: ${{ github.event.release.prerelease }}
token: ${{ secrets.REPO_SEC }}
artifacts: './release/system.json, ./release/system.zip'
artifacts: './system.json, ./system.zip'
tag: ${{ github.event.release.tag_name }}
body: ${{ github.event.release.body }}
# Publish version to foundry
- name: Get System ID
id: systemID
uses: notiz-dev/github-action-json-property@release
with:
path: "./release/system.json"
path: "./system.json"
prop_path: "id"

- name: Get minimum
id: minimum
uses: notiz-dev/github-action-json-property@release
with:
path: "./release/system.json"
path: "./system.json"
prop_path: "compatibility.minimum"

- name: Get verified
id: verified
uses: notiz-dev/github-action-json-property@release
with:
path: "./release/system.json"
path: "./system.json"
prop_path: "compatibility.verified"

# Submit to foundry
Expand Down