Skip to content

Commit

Permalink
merge pull request #254 from zackbradys/main
Browse files Browse the repository at this point in the history
fixed workflow errors/warnings
  • Loading branch information
zackbradys authored Jun 26, 2024
2 parents ceb7760 + d32d75b commit 27e2fc9
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -26,15 +26,16 @@ jobs:
uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser
version: latest
args: release --clean -p 1
version: "~> v2"
args: "release --clean -p 1"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
HOMEBREW_TAP_GITHUB_TOKEN: ${{ secrets.HOMEBREW_TAP_GITHUB_TOKEN }}

container-release:
name: Container Release Job
runs-on: ubuntu-latest
needs: [go-release]
timeout-minutes: 30
continue-on-error: true
steps:
Expand Down Expand Up @@ -67,6 +68,7 @@ jobs:
chart-release:
name: Chart Release Job
runs-on: ubuntu-latest
needs: [go-release]
timeout-minutes: 30
continue-on-error: true
steps:
Expand All @@ -75,16 +77,16 @@ jobs:
with:
fetch-depth: 0

- name: Set Up Helm
uses: azure/setup-helm@v4

- name: Authenticate to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Set Up Helm
uses: azure/setup-helm@v4

- name: Build Helm Chart
run: |
helm package deploy/kubernetes/helm/charts/hauler --destination deploy/kubernetes/helm/charts/hauler
Expand Down
2 changes: 2 additions & 0 deletions .goreleaser.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
version: 2

project_name: hauler
before:
hooks:
Expand Down

0 comments on commit 27e2fc9

Please sign in to comment.