chore(main): release 1.2.0 (#327) #49
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: Tagged Release | |
on: | |
push: | |
tags: | |
- "*" | |
workflow_dispatch: | |
permissions: | |
contents: write | |
jobs: | |
tagged-release: | |
name: "Tagged Release" | |
runs-on: "ubuntu-latest" | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v3 | |
- name: Set up Go | |
uses: actions/setup-go@v4 | |
with: | |
go-version: "1.21" | |
- name: Setup NodeJS | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "20" | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Run GoReleaser | |
uses: goreleaser/goreleaser-action@v5 | |
with: | |
distribution: goreleaser | |
version: latest | |
args: release --clean | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
HOMEBREW_GITHUB_TOKEN: ${{ secrets.HOMEBREW_GITHUB_TOKEN }} | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: release-artifacts | |
path: dist/* | |
tagged-release-installers: | |
name: "Tagged Release Installers" | |
runs-on: "ubuntu-latest" | |
needs: tagged-release | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
# download dist artifacts from previous job | |
- name: Download Artifacts | |
uses: actions/download-artifact@v3 | |
with: | |
name: release-artifacts | |
path: dist | |
- name: Get Release Artifact URL # used to append installer executables to the release after GoReleaser runs | |
id: geturl | |
run: | | |
upload_url=$(curl -sL https://api.github.com/repos/${{github.repository}}/releases/latest?access_token=${{ secrets.GITHUB_TOKEN }} | jq -r '.upload_url') | |
echo ::set-output name=upload_url::$upload_url | |
- name: Generate Installers | |
run: | | |
mkdir -p dist-installers | |
./scripts/generate-installers.sh ./dist-installers | |
- name: Upload Release Asset x86_64 | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.geturl.outputs.upload_url }} | |
asset_path: ./dist-installers/Backrest-setup-x86_64.exe | |
asset_name: Backrest-setup-windows-x86_64.exe | |
asset_content_type: application/octet-stream | |
- name: Upload Release Asset arm64 | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ steps.geturl.outputs.upload_url }} | |
asset_path: ./dist-installers/Backrest-setup-arm64.exe | |
asset_name: Backrest-setup-windows-arm64.exe | |
asset_content_type: application/octet-stream |