Skip to content

Commit

Permalink
[ci: macos-12] [ci: ubuntu-18.04] [ci: python-3.8] [ci: python-3.9] […
Browse files Browse the repository at this point in the history
…ci: windows]
  • Loading branch information
galleon committed Oct 16, 2022
1 parent 74cc8b9 commit 4fcfc2a
Showing 1 changed file with 7 additions and 8 deletions.
15 changes: 7 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ jobs:
shell: python3 {0}
run: |
from os import environ
from json import dumps
python_version = ["3.7", "3.8", "3.9"]
build_dict = { "macos":["macos-10.15"], "ubuntu":["ubuntu-latest"], "windows":["windows-latest"] }
Expand All @@ -37,10 +36,10 @@ jobs:
deploy_test_pypi = "false"
with open(environ["GITHUB_OUTPUT"], "a") as f:
f.write(f"build={dumps(build_dict)}\n")
f.write(f"test={dumps(test_dict)}\n")
f.write(f"python_version={dumps(python_version)}\n")
f.write(f"deploy_test_pypi={dumps(deploy_test_pypi)}\n")
f.write(f"build={build_dict}\n")
f.write(f"test={test_dict}\n")
f.write(f"python_version={python_version}\n")
f.write(f"deploy_test_pypi={deploy_test_pypi}\n")
lint-sources:
runs-on: ubuntu-latest
Expand Down Expand Up @@ -353,7 +352,7 @@ jobs:
- name: get MininZinc path to cache
id: get-mzn-cache-path
run: |
echo "::set-output name=path::${{ env.minizinc_cache_path }}" # expands variables
echo "path=${{ env.minizinc_cache_path }}" >> $GITHUB_OUTPUT # expands variables
- name: Restore MiniZinc cache
id: cache-minizinc
Expand Down Expand Up @@ -440,7 +439,7 @@ jobs:
- name: get MininZinc path to cache
id: get-mzn-cache-path
run: |
echo "::set-output name=path::${{ env.minizinc_cache_path }}" # expands variables
echo "path=${{ env.minizinc_cache_path }}" >> $GITHUB_OUTPUT # expands variables
- name: Restore MiniZinc cache
id: cache-minizinc
Expand Down Expand Up @@ -525,7 +524,7 @@ jobs:
- name: get MininZinc path to cache
id: get-mzn-cache-path
run: |
echo "::set-output name=path::${{ env.minizinc_cache_path }}" # expands variables
echo "path=${{ env.minizinc_cache_path }}" >> $GITHUB_OUTPUT # expands variables
- name: Restore MiniZinc cache
id: cache-minizinc
Expand Down

0 comments on commit 4fcfc2a

Please sign in to comment.