Skip to content

Commit

Permalink
Update workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
PATROMO committed May 10, 2023
1 parent 5cdace3 commit 8415c65
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,21 +18,21 @@ jobs:
run: go get .

- name: Build
run: GOOS=linux GOARCH=amd64 go build -v ./...
run: GOOS=linux GOARCH=amd64 go build -o easybackup_linux_amd64

- name: Upload Build results
uses: actions/upload-artifact@v3
with:
name: easybackup_linux_amd64
path: easybackup
name: easybackup
path: easybackup_*

release:
runs-on: ubuntu-latest
needs: [ build ]
steps:
- uses: actions/download-artifact@v3
with:
name: my-artifact
name: easybackup

- name: Display structure of downloaded files
run: ls -R

0 comments on commit 8415c65

Please sign in to comment.