Skip to content

Commit

Permalink
Fix workflows to include new actions (#42)
Browse files Browse the repository at this point in the history
  • Loading branch information
BastiaanOlij authored Aug 2, 2023
1 parent 14a4499 commit c1db954
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 5 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/build-addon-on-push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,11 +13,11 @@ jobs:
# this is why we checkout into aar and build into asset
steps:
- name: Checkout
uses: actions/checkout@v2
uses: actions/checkout@v3
with:
path: aar
- name: Setup java
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
java-version: 11
distribution: 'adopt'
Expand All @@ -40,7 +40,7 @@ jobs:
cp aar/godotopenxrpico/src/main/jniLibs/arm64-v8a/README.md asset/addons/godotopenxr/export/pico/LICENSE.md
cp aar/godotopenxrkhr/LICENSE asset/addons/godotopenxr/export/khr/LICENSE
- name: Create Godot OpenXR loader addon artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v3
with:
name: GodotOpenXRLoadersAddon
path: |
Expand All @@ -56,6 +56,8 @@ jobs:
artifacts: "godotopenxrloadersaddon.zip"
omitNameDuringUpdate: true
omitBodyDuringUpdate: true
omitDraftDuringUpdate: true
omitPrereleaseDuringUpdate: true
token: ${{ secrets.GITHUB_TOKEN }}
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')

4 changes: 2 additions & 2 deletions .github/workflows/mavencentral-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ jobs:
runs-on: ubuntu-20.04
steps:
- name: Check out code
uses: actions/checkout@v2
uses: actions/checkout@v3
- name: Set up JDK 11
uses: actions/setup-java@v2
uses: actions/setup-java@v3
with:
distribution: adopt
java-version: 11
Expand Down

0 comments on commit c1db954

Please sign in to comment.