Skip to content

Commit

Permalink
Update to node16
Browse files Browse the repository at this point in the history
  • Loading branch information
mackysoft committed Nov 4, 2023
1 parent 596e41b commit 09b73f5
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ jobs:
outputs:
sha: ${{ steps.commit.outputs.sha }}
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3
- name: Output package.json (Before)
run: cat ${{ env.TARGET_FILE}}

Expand Down Expand Up @@ -95,7 +95,7 @@ jobs:
working-directory: .

# Store artifacts.
- uses: actions/upload-artifact@v2
- uses: actions/upload-artifact@v3
with:
name: Navigathena.unitypackage
path: ./Build/Navigathena.unitypackage
Expand All @@ -105,7 +105,7 @@ jobs:
runs-on: ubuntu-latest
steps:
# Create Releases
- uses: actions/create-release@v1
- uses: actions/create-release@v2
id: create_release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -117,10 +117,10 @@ jobs:
prerelease: false

# Download(All) Artifacts to current directory
- uses: actions/download-artifact@v2
- uses: actions/download-artifact@v3

# Upload to Releases(unitypackage)
- uses: actions/upload-release-asset@v1
- uses: actions/upload-release-asset@v2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
Expand Down

0 comments on commit 09b73f5

Please sign in to comment.