Skip to content

Commit

Permalink
Merge pull request #377 from striezel-stash/ci-actions-update
Browse files Browse the repository at this point in the history
Update GitHub Actions CI
  • Loading branch information
Zylann committed Jul 18, 2023
2 parents 3d34882 + 2e1ee28 commit f41bed4
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 11 deletions.
7 changes: 3 additions & 4 deletions .github/workflows/linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
# Get submodules and their sub-submodules
submodules: recursive

# Use python 3.x release (works cross platform; best to keep self contained in it's own step)
# Because at the time the container comes with Python 2.7
- name: Set up Python 3.x
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
# Semantic version range syntax or exact version of a Python version
python-version: '3.x'
Expand Down Expand Up @@ -56,8 +56,7 @@ jobs:
scons platform=linux target=release
# Make build available
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: libhterrain_native.so
path: addons/zylann.hterrain/native/bin/linux/libhterrain_native.so

7 changes: 3 additions & 4 deletions .github/workflows/macos.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
# Get submodules and their sub-submodules
submodules: recursive

# Use python 3.x release (works cross platform; best to keep self contained in it's own step)
# Because at the time the container comes with Python 2.7
- name: Set up Python 3.x
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
# Semantic version range syntax or exact version of a Python version
python-version: '3.x'
Expand Down Expand Up @@ -56,8 +56,7 @@ jobs:
scons platform=osx target=release
# Make build available
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: libhterrain_native.dylib
path: addons/zylann.hterrain/native/bin/osx/libhterrain_native.dylib

6 changes: 3 additions & 3 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,15 @@ jobs:
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2
- uses: actions/checkout@v3
with:
# Get submodules and their sub-submodules
submodules: recursive

# Use python 3.x release (works cross platform; best to keep self contained in it's own step)
# Because at the time the container comes with Python 2.7
- name: Set up Python 3.x
uses: actions/setup-python@v2
uses: actions/setup-python@v4
with:
# Semantic version range syntax or exact version of a Python version
python-version: '3.x'
Expand Down Expand Up @@ -56,7 +56,7 @@ jobs:
scons platform=windows target=release
# Make build available
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: hterrain_native.dll
path: addons/zylann.hterrain/native/bin/win64/hterrain_native.dll
Expand Down

0 comments on commit f41bed4

Please sign in to comment.