-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
The current release workflow was using golang 1.16 and failing to download and vendor the dependencies, but since the build is not being used during the brew builds, as we generate new ones, the easiest option was to remove that dated workflow and let only the distribution-tarball generate the needed files. Signed-off-by: Rodolfo Olivieri <[email protected]>
- Loading branch information
Showing
2 changed files
with
4 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,18 +22,13 @@ jobs: | |
- name: Checkout the repository | ||
uses: actions/checkout@v4 | ||
|
||
- name: Generate build files | ||
uses: thatisuday/[email protected] | ||
- uses: actions/setup-go@v4 | ||
with: | ||
platforms: 'linux/amd64' | ||
package: 'src' | ||
name: 'rhc-worker-script-${{ steps.tagName.outputs.tag }}' | ||
compress: 'true' | ||
dest: 'dist' | ||
go-version: '1.19' | ||
|
||
- name: Generate distribution tarball | ||
run: | | ||
make distribution-tarball | ||
mkdir dist && make distribution-tarball | ||
sudo mv *.tar.gz dist/ | ||
env: | ||
VERSION: '${{ steps.tagName.outputs.tag }}' | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters