Skip to content

update to get-tag 2.1.3 and upload-artifact 4 #53

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
22 changes: 11 additions & 11 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: olegtarasov/[email protected].2
- uses: olegtarasov/[email protected].3
id: get_version
- uses: actions/checkout@v4
with:
Expand All @@ -50,7 +50,7 @@ jobs:
zip --recurse-paths ../${{ env.binary }}.zip .

- name: Upload binaries to artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: ${{ env.binary }}.zip
name: wasm
Expand All @@ -71,7 +71,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- uses: olegtarasov/[email protected].2
- uses: olegtarasov/[email protected].3
id: get_version
- uses: actions/checkout@v4
with:
Expand Down Expand Up @@ -99,7 +99,7 @@ jobs:
zip --recurse-paths ../${{ env.binary }}.zip .

- name: Upload binaries to artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: ${{ env.binary }}.zip
name: linux
Expand All @@ -120,7 +120,7 @@ jobs:
runs-on: windows-latest

steps:
- uses: olegtarasov/[email protected].2
- uses: olegtarasov/[email protected].3
id: get_version
- uses: actions/checkout@v4
with:
Expand All @@ -145,7 +145,7 @@ jobs:
Compress-Archive -Path windows/* -DestinationPath ${{ env.binary }}.zip

- name: Upload binaries to artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: ${{ env.binary }}.zip
name: windows
Expand All @@ -166,7 +166,7 @@ jobs:
runs-on: macOS-latest

steps:
- uses: olegtarasov/[email protected].2
- uses: olegtarasov/[email protected].3
id: get_version
- uses: actions/checkout@v4
with:
Expand All @@ -191,7 +191,7 @@ jobs:
hdiutil create -fs HFS+ -volname "${{ env.binary }}" -srcfolder ${{ env.binary }}.app ${{ env.binary }}-macOS-intel.dmg

- name: Upload binaries to artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: ${{ env.binary }}-macOS-intel.dmg
name: macOS-intel
Expand All @@ -212,7 +212,7 @@ jobs:
runs-on: macOS-latest

steps:
- uses: olegtarasov/[email protected].2
- uses: olegtarasov/[email protected].3
id: get_version
- uses: actions/checkout@v4
with:
Expand All @@ -237,7 +237,7 @@ jobs:
hdiutil create -fs HFS+ -volname "${{ env.binary }}-macOS-apple-silicon" -srcfolder ${{ env.binary }}.app ${{ env.binary }}-macOS-apple-silicon.dmg

- name: Upload binaries to artifacts
uses: actions/upload-artifact@v3
uses: actions/upload-artifact@v4
with:
path: ${{ env.binary }}-macOS-apple-silicon.dmg
name: macOS-apple-silicon
Expand Down Expand Up @@ -289,7 +289,7 @@ jobs:
unzip butler.zip
chmod +x butler
./butler -V
- uses: olegtarasov/[email protected].2
- uses: olegtarasov/[email protected].3
id: get_version
- name: Upload to itch.io
env:
Expand Down