Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix node release #732

Merged
merged 4 commits into from
Mar 30, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 5 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ env:

jobs:
release:
runs-on: windows-latest
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
Expand Down Expand Up @@ -45,6 +45,10 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}

node-release:
runs-on: ubuntu-latest
needs: release
steps:
Comment on lines +48 to +51
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That wouldn't be necessary then, wouldn't it? Do you want to keep it separate?

- name: Trigger node-saucectl Release
# pre-release version contains `-` and should be skipped when publishing node-saucectl.
if: ${{ !contains(github.ref, '-') }}
Expand Down
20 changes: 0 additions & 20 deletions .goreleaser.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,26 +35,6 @@ brews:
commit_author:
name: devx-sauce-bot
email: devx.bot@saucelabs.com
chocolateys:
-
name: saucectl
owners: Sauce Labs Inc
authors: devx-sauce-bot
project_url: https://github.com/saucelabs/saucectl
url_template: "https://github.com/saucelabs/saucectl/releases/download/{{ .Tag }}/{{ .ArtifactName }}"
copyright: 2023 Sauce Labs Inc
license_url: https://github.com/saucelabs/saucectl/blob/main/LICENSE
require_license_acceptance: false
project_source_url: https://github.com/saucelabs/saucectl
docs_url: https://docs.saucelabs.com/dev/cli/saucectl/
bug_tracker_url: https://github.com/saucelabs/saucectl/issues
summary: "Test orchestration with Sauce Labs"
description: "Test orchestration with Sauce Labs"
release_notes: "https://github.com/saucelabs/saucectl/releases/tag/v{{ .Version }}"
api_key: '{{ .Env.CHOCOLATEY_API_KEY }}'
source_repo: "https://push.chocolatey.org/"
skip_publish: false
goamd64: v1
archives:
- name_template: >-
{{ .ProjectName }}_{{ .Version }}_
Expand Down