mirror of
https://github.com/ClementTsang/bottom.git
synced 2026-05-03 21:40:32 +00:00
056748ba9f
* ci: fix clear cache workflow permissions * fix perms for deployment/nightly * more finely scope other tasks * fix nightly * change name * fix docs permissions
156 lines
4.3 KiB
YAML
156 lines
4.3 KiB
YAML
# How we deploy a release. Covers binary builds. Also manages packaging for choco.
|
|
|
|
name: deployment
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
inputs:
|
|
tag:
|
|
description: "Which tag to deploy as:"
|
|
required: true
|
|
push:
|
|
tags:
|
|
- "[0-9]+.[0-9]+.[0-9]+"
|
|
|
|
permissions: {}
|
|
|
|
env:
|
|
CARGO_INCREMENTAL: 0
|
|
CARGO_PROFILE_DEV_DEBUG: 0
|
|
CARGO_HUSKY_DONT_INSTALL_HOOKS: true
|
|
|
|
jobs:
|
|
initialize:
|
|
name: initialize
|
|
runs-on: ubuntu-24.04
|
|
outputs:
|
|
version: ${{ env.VERSION }}
|
|
steps:
|
|
- name: Get the release version from the tag
|
|
if: env.VERSION == ''
|
|
run: |
|
|
if [[ -n "${{ github.event.inputs.tag }}" ]]; then
|
|
echo "Manual run against a tag; overriding actual tag in the environment..."
|
|
echo "VERSION=${{ github.event.inputs.tag }}" >> $GITHUB_ENV
|
|
else
|
|
echo "VERSION=${GITHUB_REF#refs/tags/}" >> $GITHUB_ENV
|
|
fi
|
|
|
|
- name: Validate version environment variable
|
|
run: |
|
|
echo "Version being built against is version ${{ env.VERSION }}"!
|
|
|
|
build-release:
|
|
needs: [initialize]
|
|
permissions:
|
|
id-token: write
|
|
contents: read
|
|
attestations: write
|
|
uses: ./.github/workflows/build_releases.yml
|
|
with:
|
|
caller: "deployment"
|
|
secrets: inherit
|
|
|
|
generate-choco:
|
|
needs: [initialize, build-release]
|
|
name: "Generate Chocolatey files"
|
|
runs-on: ubuntu-24.04
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
fetch-depth: 1
|
|
|
|
- name: Set release version
|
|
shell: bash
|
|
run: |
|
|
echo "RELEASE_VERSION=${{ needs.initialize.outputs.version }}" >> $GITHUB_ENV
|
|
|
|
- name: Validate release version
|
|
run: |
|
|
echo "Release version: ${{ env.RELEASE_VERSION }}"
|
|
|
|
- name: Get release artifacts
|
|
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
|
|
with:
|
|
pattern: release-*
|
|
path: release
|
|
merge-multiple: true
|
|
|
|
- name: Execute choco packaging script
|
|
run: |
|
|
python "./scripts/windows/choco/choco_packager.py" "./release/bottom_x86_64-pc-windows-msvc.zip" ${{ env.RELEASE_VERSION }} "./scripts/windows/choco/bottom.nuspec.template" "./scripts/windows/choco/chocolateyinstall.ps1.template" "bottom.nuspec" "tools/chocolateyinstall.ps1" "tools/"
|
|
zip -r choco.zip "bottom.nuspec" "tools"
|
|
|
|
- name: Move release file into release directory
|
|
shell: bash
|
|
run: mv choco.zip release/
|
|
|
|
- name: Save release as artifact
|
|
uses: actions/upload-artifact@26f96dfa697d77e81fd5907df203aa23a56210a8 # v4.3.0
|
|
with:
|
|
retention-days: 3
|
|
name: release-choco
|
|
path: release
|
|
|
|
upload-release:
|
|
name: upload-release
|
|
runs-on: ubuntu-24.04
|
|
needs: [initialize, generate-choco, build-release]
|
|
environment: production
|
|
permissions:
|
|
contents: write
|
|
steps:
|
|
- name: Set release version
|
|
shell: bash
|
|
run: |
|
|
echo "RELEASE_VERSION=${{ needs.initialize.outputs.version }}" >> $GITHUB_ENV
|
|
|
|
- name: Validate release version
|
|
run: |
|
|
echo "Release version: ${{ env.RELEASE_VERSION }}"
|
|
|
|
- name: Get release artifacts
|
|
uses: actions/download-artifact@fa0a91b85d4f404e444e00e005971372dc801d16 # v4.1.8
|
|
with:
|
|
pattern: release-*
|
|
path: release
|
|
merge-multiple: true
|
|
|
|
- name: Print out all release files
|
|
run: |
|
|
echo "Generated $(ls ./release | wc -l) files:"
|
|
du -h -d 0 ./release/*
|
|
|
|
- name: Create release and add release files
|
|
uses: softprops/action-gh-release@c062e08bd532815e2082a85e87e3ef29c3e6d191 # 2.0.8
|
|
with:
|
|
token: ${{ secrets.GITHUB_TOKEN }}
|
|
prerelease: false
|
|
tag_name: ${{ env.RELEASE_VERSION }}
|
|
draft: true
|
|
fail_on_unmatched_files: true
|
|
name: ${{ env.RELEASE_VERSION }} Release
|
|
body: |
|
|
<!-- Write summary here -->
|
|
|
|
---
|
|
|
|
## Bug Fixes
|
|
|
|
## Features
|
|
|
|
## Changes
|
|
|
|
## Other
|
|
|
|
## Internal Changes
|
|
|
|
## New Contributors
|
|
|
|
---
|
|
|
|
**Full Changelog:**
|
|
files: |
|
|
./release/*
|