chore(main): release 1.38.0 #374
Workflow file for this run
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
name: Build CLI Developer Snapshot | |
on: | |
pull_request: | |
push: | |
tags-ignore: | |
- 'v*.*.*' | |
jobs: | |
build-cli: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.20" | |
- name: Print Go Version | |
run: go version | |
- name: Import GPG key | |
id: import_gpg | |
uses: crazy-max/ghaction-import-gpg@v6 | |
with: | |
gpg_private_key: ${{ secrets.GPG_KEY }} | |
- name: Decrypt Secrets | |
env: | |
SECRETS_PASSWORD: ${{ secrets.SECRETS_PASSWORD }} | |
run: bash script/decrypt_secrets.sh | |
- name: Install gon | |
run: | | |
wget https://github.com/mitchellh/gon/releases/download/v0.2.5/gon_macos.zip | |
unzip gon_macos.zip | |
mv gon /usr/local/bin/gon | |
chmod +x /usr/local/bin/gon | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@v4 | |
with: | |
version: latest | |
args: release --clean --snapshot --skip-sign --parallelism=2 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- uses: actions/upload-artifact@v3 | |
with: | |
name: Preview Binaries | |
path: dist/hcloud-*/hcloud |