Skip to content
Merged
Show file tree
Hide file tree
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/build-test-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -148,9 +148,9 @@ jobs:
arch: x86_64
- os: macos-14
arch: arm64
- os: windows-2019
- os: windows-2022
arch: x86
- os: windows-2019
- os: windows-2022
arch: AMD64
steps:
- name: Checkout
Expand All @@ -164,15 +164,15 @@ jobs:
run: |
perl -i -pe "s/version\s*=\s*\"(.*?)(\.rc.*|\.a.*|\.post.*)?\"/version=\"\1.dev0+${GITHUB_SHA::8}\"/" pyproject.toml
- name: Note version
if: matrix.os != 'windows-2019'
if: ${{ !startsWith(matrix.os, 'windows-') }}
shell: bash
run: |
python3 -m venv .yq-venv
. .yq-venv/bin/activate
pip install yq
echo "PACKAGE_VERSION=$(tomlq '.project.version' pyproject.toml -r)" >> $GITHUB_ENV
- name: Note version (Windows)
if: matrix.os == 'windows-2019'
if: ${{ startsWith(matrix.os, 'windows-') }}
run: |
pipx install yq
$env:PACKAGE_VERSION = tomlq.exe '.project.version' pyproject.toml -r
Expand All @@ -189,12 +189,12 @@ jobs:
python-version: "3.12"
- name: Download GNU Tar
uses: suisei-cn/actions-download-file@v1.6.0
if: "matrix.os == 'windows-2019'"
if: ${{ startsWith(matrix.os, 'windows-') }}
with:
url: https://skytemple.org/build_deps/tar.exe
target: "C:\\tarout"
- name: Prepend GNU Tar to Path
if: "matrix.os == 'windows-2019'"
if: ${{ startsWith(matrix.os, 'windows-') }}
shell: powershell
run:
echo "C:\tarout" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
Expand Down
2 changes: 1 addition & 1 deletion antlr4
Submodule antlr4 updated 615 files
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ build-backend = "scikit_build_core.setuptools.build_meta"

[project]
name = "explorerscript"
version = "0.2.3"
version = "0.2.4"
authors = [
{ name = 'Marco "Capypara" Köpcke', email = "hello@capypara.de" },
# see GitHub contributors list for additional people.
Expand Down
Loading