Skip to content

Commit

Permalink
ci: fix goreleaser ci again again (#3010)
Browse files Browse the repository at this point in the history
<!-- please provide a detailed description of the changes made in this
pull request. -->

<details><summary>Contributors' checklist...</summary>

- [ ] Added new tests, or not needed, or not feasible
- [ ] Provided an example (e.g. screenshot) to aid review or the PR is
self-explanatory
- [ ] Updated the official documentation or not needed
- [ ] No breaking changes were made, or a `BREAKING CHANGE: xxx` message
was included in the description
- [ ] Added references to related issues and PRs
- [ ] Provided any useful hints for running manual tests
</details>

---------

Co-authored-by: Sergio Maria Matone <[email protected]>
  • Loading branch information
thehowl and sw360cab authored Oct 23, 2024
1 parent 4927d4b commit c2aef42
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/releaser-master.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
with:
distribution: goreleaser-pro
version: ~> v2
args: release --clean --nightly --config ./.github/goreleaser.yaml
args: release --clean --snapshot --nightly --config ./.github/goreleaser.yaml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
Expand Down
5 changes: 2 additions & 3 deletions .github/workflows/releaser-nightly.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: Trigger nightly build

on:
schedule:
- cron: '0 0 * * 2-6'
- cron: "0 0 * * 2-6"
workflow_dispatch:

permissions:
Expand Down Expand Up @@ -39,9 +39,8 @@ jobs:
with:
distribution: goreleaser-pro
version: ~> v2
args: release --clean --nightly --skip=validate --snapshot --config ./.github/goreleaser.yaml
args: release --clean --nightly --snapshot --config ./.github/goreleaser.yaml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}
TAG_VERSION: nightly

4 changes: 2 additions & 2 deletions .github/workflows/releaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,12 +34,12 @@ jobs:

- name: Set up QEMU
uses: docker/setup-qemu-action@v3

- uses: goreleaser/goreleaser-action@v6
with:
distribution: goreleaser-pro
version: ~> v2
args: release --clean --snapshot --config ./.github/goreleaser.yaml
args: release --clean --config ./.github/goreleaser.yaml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
GORELEASER_KEY: ${{ secrets.GORELEASER_KEY }}

0 comments on commit c2aef42

Please sign in to comment.