Skip to content

Commit

Permalink
Updated the registry-publish* files to use the 1.22 version of Go and…
Browse files Browse the repository at this point in the history
… the latest artifact packages
  • Loading branch information
misraved committed Sep 27, 2024
1 parent 7cb3df9 commit 083b81b
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 10 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/registry-publish-ghcr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v4
with:
go-version: 1.21
go-version: 1.22

# Increase the swapfile size to ensure that the goreleaseer does not fail
- name: Increase swapfile
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/registry-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ jobs:
- name: Set up Go
uses: actions/setup-go@v3
with:
go-version: 1.21
go-version: 1.22

- name: Get latest version tag
run: |-
Expand Down Expand Up @@ -96,28 +96,28 @@ jobs:
run: ls -laR ./dist

- name: Save Linux Build Artifact - AMD64
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: steampipe-${{ env.PLUGIN_NAME }}_linux_amd64
path: ./dist/steampipe-plugin-${{ env.PLUGIN_NAME }}_linux_amd64.gz
if-no-files-found: error

- name: Save Linux Build Artifact - ARM64
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: steampipe-${{ env.PLUGIN_NAME }}_linux_arm64
path: ./dist/steampipe-plugin-${{ env.PLUGIN_NAME }}_linux_arm64.gz
if-no-files-found: error

- name: Save MacOS Build Artifact - AMD64
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: steampipe-${{ env.PLUGIN_NAME }}_darwin_amd64
path: ./dist/steampipe-plugin-${{ env.PLUGIN_NAME }}_darwin_amd64.gz
if-no-files-found: error

- name: Save MacOS Build Artifact - ARM64
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: steampipe-${{ env.PLUGIN_NAME }}_darwin_arm64
path: ./dist/steampipe-plugin-${{ env.PLUGIN_NAME }}_darwin_arm64.gz
Expand Down Expand Up @@ -163,22 +163,22 @@ jobs:
oras version
- name: Download linux-amd64 artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: steampipe-${{ env.PLUGIN_NAME }}_linux_amd64

- name: Download linux_arm64 artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: steampipe-${{ env.PLUGIN_NAME }}_linux_arm64

- name: Download darwin_amd64 artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: steampipe-${{ env.PLUGIN_NAME }}_darwin_amd64

- name: Download darwin_arm64 artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: steampipe-${{ env.PLUGIN_NAME }}_darwin_arm64

Expand Down

0 comments on commit 083b81b

Please sign in to comment.