Merge pull request #205 from dokku/dependabot/github_actions/ruby/set… #8
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" | |
# yamllint disable-line rule:truthy | |
on: | |
push: | |
tags: | |
- "*" | |
permissions: | |
attestations: write | |
id-token: write | |
contents: write | |
jobs: | |
tagged-release: | |
name: tagged-release | |
runs-on: ubuntu-22.04 | |
env: | |
CI_BRANCH: release | |
PACKAGECLOUD_REPOSITORY: dokku/dokku | |
VERSION: ${{ github.ref_name }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Set up Go | |
uses: actions/setup-go@v5 | |
with: | |
go-version-file: "go.mod" | |
- name: Get Repository Name | |
id: repo-name | |
run: | | |
echo "REPOSITORY_NAME=$(echo "${{ github.repository }}" | cut -d '/' -f 2)" >> $GITHUB_OUTPUT | |
- name: Build binaries | |
uses: crazy-max/ghaction-xgo@v3 | |
with: | |
xgo_version: latest | |
go_version: 1.21 | |
dest: dist | |
prefix: ${{ steps.repo-name.outputs.REPOSITORY_NAME }} | |
targets: darwin/amd64,darwin/arm64,linux/arm64,linux/amd64,windows/amd64 | |
v: true | |
x: false | |
race: false | |
ldflags: -s -w -X main.Version=${{ github.ref_name }} | |
buildmode: default | |
trimpath: true | |
- name: Attest Build Provenance - darwin-amd64 | |
uses: actions/attest-build-provenance@v1.2.0 | |
with: | |
subject-path: "dist/${{ steps.repo-name.outputs.REPOSITORY_NAME }}-darwin-amd64" | |
- name: Attest Build Provenance - darwin-arm64 | |
uses: actions/attest-build-provenance@v1.2.0 | |
with: | |
subject-path: "dist/${{ steps.repo-name.outputs.REPOSITORY_NAME }}-darwin-arm64" | |
- name: Attest Build Provenance - linux-amd64 | |
uses: actions/attest-build-provenance@v1.2.0 | |
with: | |
subject-path: "dist/${{ steps.repo-name.outputs.REPOSITORY_NAME }}-linux-amd64" | |
- name: Attest Build Provenance - linux-arm64 | |
uses: actions/attest-build-provenance@v1.2.0 | |
with: | |
subject-path: "dist/${{ steps.repo-name.outputs.REPOSITORY_NAME }}-linux-arm64" | |
- name: Attest Build Provenance - windows-amd64 | |
uses: actions/attest-build-provenance@v1.2.0 | |
with: | |
subject-path: "dist/${{ steps.repo-name.outputs.REPOSITORY_NAME }}-windows-amd64.exe" | |
- name: Setup Ruby | |
uses: ruby/setup-ruby@v1.180.0 | |
with: | |
bundler-cache: true | |
working-directory: .github | |
- name: Build Debian Packages | |
run: | | |
mkdir -p build/linux | |
cp dist/${{ steps.repo-name.outputs.REPOSITORY_NAME }}-linux-amd64 build/linux/${{ steps.repo-name.outputs.REPOSITORY_NAME }}-amd64 | |
cp dist/${{ steps.repo-name.outputs.REPOSITORY_NAME }}-linux-arm64 build/linux/${{ steps.repo-name.outputs.REPOSITORY_NAME }}-arm64 | |
bundle exec make build/deb/${{ steps.repo-name.outputs.REPOSITORY_NAME }}_${{ github.ref_name }}_arm64.deb | |
bundle exec make build/deb/${{ steps.repo-name.outputs.REPOSITORY_NAME }}_${{ github.ref_name }}_amd64.deb | |
cp build/deb/*.deb dist/ | |
env: | |
BUNDLE_GEMFILE: .github/Gemfile | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: dist | |
path: dist/* | |
- name: Release to PackageCloud | |
run: bundle exec make release-packagecloud | |
env: | |
BUNDLE_GEMFILE: .github/Gemfile | |
PACKAGECLOUD_TOKEN: ${{ secrets.PACKAGECLOUD_TOKEN }} | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: dist/* | |
generate_release_notes: true | |
make_latest: "true" |