Skip to content
Merged
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
12 changes: 6 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
brew install Bearer/tap/gon
make signdmg
- name: upload artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: dmg-release
path: release
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
make release
source settings.sh ; echo "version=${VERSION}-${ITERATION}" >> $GITHUB_OUTPUT
- name: upload artifacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v7
with:
name: release
path: release
Expand All @@ -86,7 +86,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: "Download files: ${{ matrix.files }}"
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: ${{ matrix.files }}
- name: Upload files to unstable.golift.io
Expand All @@ -107,7 +107,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download release files
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: release
- uses: golift/upload-packagecloud@v1
Expand All @@ -126,7 +126,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download release files
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: release
- uses: golift/upload-packagecloud@v1
Expand All @@ -150,7 +150,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download ${{ matrix.files }} Files
uses: actions/download-artifact@v7
uses: actions/download-artifact@v8
with:
name: ${{ matrix.files }}
- name: Publish ${{ matrix.files }} artifacts to github
Expand Down