Skip to content
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

Bump actions/upload-artifact from 3.1.2 to 3.1.3 #16

Merged
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/go.yml
Original file line number Diff line number Diff line change
Expand Up @@ -60,29 +60,29 @@ jobs:
GOARCH: amd64
run: go build -o ${{ github.event.repository.name }}-windows-amd64.exe ./...
- name: Upload linux amd64 binary
uses: actions/[email protected].2
uses: actions/[email protected].3
with:
name: ${{ github.event.repository.name }}-linux-amd64
path: ${{ github.event.repository.name }}-linux-amd64
- name: Upload Linux arm64 binary
uses: actions/[email protected].2
uses: actions/[email protected].3
with:
name: ${{ github.event.repository.name }}-linux-arm64
path: ${{ github.event.repository.name }}-linux-arm64
- name: Upload macOS arm64 binary
uses: actions/[email protected].2
uses: actions/[email protected].3
with:
name: ${{ github.event.repository.name }}-darwin-arm64
path: ${{ github.event.repository.name }}-darwin-arm64
- name: Upload Windows amd64 binary
uses: actions/[email protected].2
uses: actions/[email protected].3
with:
name: ${{ github.event.repository.name }}-windows-amd64.exe
path: ${{ github.event.repository.name }}-windows-amd64.exe
- name: Package personalities directory
run: tar czf personalities.tar.gz personalities/
- name: Upload personalities tarball
uses: actions/[email protected].2
uses: actions/[email protected].3
with:
name: personalities.tar.gz
path: personalities.tar.gz
Expand All @@ -97,7 +97,7 @@ jobs:
draft: false
prerelease: false
- name: Upload Artifacts
uses: actions/[email protected].2
uses: actions/[email protected].3
with:
name: binaries
path: |
Expand Down