Update version number and fix copy to clipboard feature #68
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: Continuous Deployment | |
on: | |
push: | |
tags: | |
- "v*.*.*" | |
jobs: | |
create-github-release: | |
name: create-github-release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Create artifacts directory | |
run: mkdir artifacts | |
- 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 }}"! | |
- name: Save version number to artifact | |
run: echo "${{ env.VERSION }}" > artifacts/release-version | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v1 | |
with: | |
name: artifacts | |
path: artifacts | |
build-release-artifacts: | |
name: build-release | |
needs: [create-github-release] | |
runs-on: ${{ matrix.job.os }} | |
env: | |
RUST_BACKTRACE: 1 | |
strategy: | |
fail-fast: false | |
matrix: | |
job: | |
- { name: "macOS-arm64", os: "macOS-latest", target: "aarch64-apple-darwin", artifact_prefix: "macos-arm64", use-cross: true } | |
- { name: "macOS-amd64", os: "macOS-latest", target: "x86_64-apple-darwin", artifact_prefix: "macos" } | |
- { name: "windows-amd64", os: "windows-latest", target: "x86_64-pc-windows-msvc", artifact_prefix: "windows" } | |
- { name: "linux-gnu", os: "ubuntu-latest", target: "x86_64-unknown-linux-gnu", artifact_prefix: "linux" } | |
# seems impossible to build static musl binaries due to XCB dependency. See https://github.com/rust-lang/rust/issues/116348 | |
# - { name: "linux-musl", os: "ubuntu-latest", target: "x86_64-unknown-linux-musl", artifact_prefix: "linux-musl", } | |
- { name: "aarch64-gnu", os: "ubuntu-latest", target: "aarch64-unknown-linux-gnu", artifact_prefix: "aarch64-gnu", use-cross: true, test-bin: "--bin kdash" } | |
- { name: "aarch64-musl", os: "ubuntu-latest", target: "aarch64-unknown-linux-musl", artifact_prefix: "aarch64-musl", use-cross: true, test-bin: "--bin kdash" } | |
- { name: "arm-gnu", os: "ubuntu-latest", target: "arm-unknown-linux-gnueabihf", artifact_prefix: "arm-gnu", use-cross: true, test-bin: "--bin kdash" } | |
- { name: "arm-musl", os: "ubuntu-latest", target: "arm-unknown-linux-musleabihf", artifact_prefix: "arm-musl", use-cross: true, test-bin: "--bin kdash" } | |
rust: [stable] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 1 | |
- name: Get shared artifacts | |
uses: actions/download-artifact@v2 | |
with: | |
name: artifacts | |
path: artifacts | |
- name: Set release version | |
shell: bash | |
run: | | |
release_version="$(cat ./artifacts/release-version)" | |
echo "RELEASE_VERSION=$release_version" >> $GITHUB_ENV | |
- name: Validate release environment variables | |
run: | | |
echo "Release version: ${{ env.RELEASE_VERSION }}" | |
- name: Install toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ matrix.rust }} | |
override: true | |
target: ${{ matrix.job.target }} | |
profile: minimal # minimal component installation (ie, no documentation) | |
- name: Installing needed macOS dependencies | |
if: matrix.job.os == 'macos-latest' | |
run: brew install [email protected] | |
- name: Installing needed Ubuntu dependencies | |
if: matrix.job.os == 'ubuntu-latest' | |
shell: bash | |
run: | | |
sudo apt-get -y update | |
sudo apt-get -y install -qq pkg-config libssl-dev libxcb1-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev musl-tools | |
case ${{ matrix.job.target }} in | |
arm-unknown-linux-*) sudo apt-get -y install gcc-arm-linux-gnueabihf ;; | |
aarch64-unknown-linux-*) sudo apt-get -y install gcc-aarch64-linux-gnu ;; | |
esac | |
- name: Build | |
uses: actions-rs/cargo@v1 | |
with: | |
use-cross: ${{ matrix.job.use-cross }} | |
command: build | |
args: --release --verbose --target=${{ matrix.job.target }} | |
toolchain: ${{ matrix.rust }} | |
- name: Verify file | |
shell: bash | |
run: | | |
file target/${{ matrix.job.target }}/release/kdash | |
- name: Test | |
if: matrix.job.target != 'aarch64-apple-darwin' | |
uses: actions-rs/cargo@v1 | |
with: | |
use-cross: ${{ matrix.job.use-cross }} | |
command: test | |
args: --target=${{ matrix.job.target }} ${{ matrix.job.test-bin }} | |
- name: Packaging final binary (Windows) | |
if: matrix.job.os == 'windows-latest' | |
shell: bash | |
run: | | |
cd target/${{ matrix.job.target }}/release | |
BINARY_NAME=kdash.exe | |
# strip the binary | |
strip $BINARY_NAME | |
RELEASE_NAME=kdash-${{ matrix.job.artifact_prefix }} | |
tar czvf $RELEASE_NAME.tar.gz $BINARY_NAME | |
# create sha checksum files | |
certutil -hashfile $RELEASE_NAME.tar.gz sha256 | grep -E [A-Fa-f0-9]{64} > $RELEASE_NAME.sha256 | |
echo "RELEASE_NAME=$RELEASE_NAME" >> $GITHUB_ENV | |
- name: Packaging final binary (macOS and Linux) | |
if: matrix.job.os != 'windows-latest' | |
shell: bash | |
run: | | |
# set the right strip executable | |
STRIP="strip"; | |
case ${{ matrix.job.target }} in | |
arm-*-linux-*) STRIP="arm-linux-gnueabihf-strip" ;; | |
aarch64-*-linux-*) STRIP="aarch64-linux-gnu-strip" ;; | |
esac; | |
cd target/${{ matrix.job.target }}/release | |
BINARY_NAME=kdash | |
# strip the binary | |
"$STRIP" "$BINARY_NAME" | |
RELEASE_NAME=kdash-${{ matrix.job.artifact_prefix }} | |
tar czvf $RELEASE_NAME.tar.gz $BINARY_NAME | |
# create sha checksum files | |
shasum -a 256 $RELEASE_NAME.tar.gz > $RELEASE_NAME.sha256 | |
echo "RELEASE_NAME=$RELEASE_NAME" >> $GITHUB_ENV | |
- name: Releasing assets | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: | | |
target/${{ matrix.job.target }}/release/${{ env.RELEASE_NAME }}.tar.gz | |
target/${{ matrix.job.target }}/release/${{ env.RELEASE_NAME }}.sha256 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
- name: Add SHA to artifacts | |
run: | | |
cp target/${{ matrix.job.target }}/release/${{ env.RELEASE_NAME }}.sha256 artifacts/ | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v1 | |
with: | |
name: artifacts | |
path: artifacts | |
publish-homebrew-formula: | |
needs: [build-release-artifacts] | |
name: Update Homebrew formulas | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 1 | |
- name: Get release artifacts | |
uses: actions/download-artifact@v2 | |
with: | |
name: artifacts | |
path: artifacts | |
- name: Set release assets and version | |
shell: bash | |
run: | | |
macos_sha="$(cat ./artifacts/kdash-macos.sha256 | awk '{print $1}')" | |
echo "MACOS_SHA=$macos_sha" >> $GITHUB_ENV | |
macos_sha_arm="$(cat ./artifacts/kdash-macos-arm64.sha256 | awk '{print $1}')" | |
echo "MACOS_SHA_ARM=$macos_sha_arm" >> $GITHUB_ENV | |
linux_sha="$(cat ./artifacts/kdash-linux.sha256 | awk '{print $1}')" | |
echo "LINUX_SHA=$linux_sha" >> $GITHUB_ENV | |
release_version="$(cat ./artifacts/release-version)" | |
echo "RELEASE_VERSION=$release_version" >> $GITHUB_ENV | |
- name: Validate release environment variables | |
run: | | |
echo "Release SHA macos: ${{ env.MACOS_SHA }}" | |
echo "Release SHA macos-arm: ${{ env.MACOS_SHA_ARM }}" | |
echo "Release SHA linux: ${{ env.LINUX_SHA }}" | |
echo "Release version: ${{ env.RELEASE_VERSION }}" | |
- name: Execute Homebrew packaging script | |
run: | | |
# run packaging script | |
python "./deployment/homebrew/packager.py" ${{ env.RELEASE_VERSION }} "./deployment/homebrew/kdash.rb.template" "./kdash.rb" ${{ env.MACOS_SHA }} ${{ env.MACOS_SHA_ARM }} ${{ env.LINUX_SHA }} | |
# push to Git | |
git config --global user.email "[email protected]" | |
git config --global user.name "deepu105" | |
git clone https://deepu105:${{ secrets.KDASH_RS_GITHUB_TOKEN }}@github.com/kdash-rs/homebrew-kdash.git --branch=main brew | |
rm brew/Formula/kdash.rb | |
cp kdash.rb brew/Formula | |
cd brew | |
git add . | |
git diff-index --quiet HEAD || git commit -am "Update formula for KDash release ${{ env.RELEASE_VERSION }}" | |
git push origin main | |
publish-windows-packages: | |
needs: [build-release-artifacts] | |
name: Update scoop & choco formulas | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v2 | |
with: | |
fetch-depth: 1 | |
- name: Get release artifacts | |
uses: actions/download-artifact@v2 | |
with: | |
name: artifacts | |
path: artifacts | |
- name: Set release assets and version | |
shell: bash | |
run: | | |
windows_sha="$(cat ./artifacts/kdash-windows.sha256 | awk '{print $1}')" | |
echo "WINDOWS_SHA=$windows_sha" >> $GITHUB_ENV | |
release_version="$(cat ./artifacts/release-version)" | |
echo "RELEASE_VERSION=$release_version" >> $GITHUB_ENV | |
- name: Validate release environment variables | |
run: | | |
echo "Release SHA windows: ${{ env.WINDOWS_SHA }}" | |
echo "Release version: ${{ env.RELEASE_VERSION }}" | |
- name: Execute chocolatey packaging script | |
run: | | |
# run packaging script | |
python "./deployment/chocolatey/packager.py" ${{ env.RELEASE_VERSION }} "./deployment/chocolatey/kdash.nuspec.template" "./kdash.nuspec" ${{ env.WINDOWS_SHA }} | |
python "./deployment/chocolatey/packager.py" ${{ env.RELEASE_VERSION }} "./deployment/chocolatey/chocolateyinstall.ps1.template" "./chocolateyinstall.ps1" ${{ env.WINDOWS_SHA }} | |
# push to Git | |
git config --global user.email "[email protected]" | |
git config --global user.name "deepu105" | |
git clone https://deepu105:${{ secrets.KDASH_RS_GITHUB_TOKEN }}@github.com/kdash-rs/choco-kdash --branch=main choco | |
rm choco/kdash.nuspec | |
rm choco/tools/chocolateyinstall.ps1 | |
cp kdash.nuspec choco/kdash.nuspec | |
cp chocolateyinstall.ps1 choco/tools/chocolateyinstall.ps1 | |
cd choco | |
git add . | |
git diff-index --quiet HEAD || git commit -am "Update package for KDash release ${{ env.RELEASE_VERSION }}" | |
git push origin main | |
- name: Execute Scoop packaging script | |
run: | | |
# run packaging script | |
python "./deployment/scoop/packager.py" ${{ env.RELEASE_VERSION }} "./deployment/scoop/kdash.json.template" "./kdash.json" ${{ env.WINDOWS_SHA }} | |
# push to Git | |
git config --global user.email "[email protected]" | |
git config --global user.name "deepu105" | |
git clone https://deepu105:${{ secrets.KDASH_RS_GITHUB_TOKEN }}@github.com/kdash-rs/scoop-kdash --branch=main scoop | |
rm scoop/kdash.json | |
cp kdash.json scoop/kdash.json | |
cd scoop | |
git add . | |
git diff-index --quiet HEAD || git commit -am "Update package for KDash release ${{ env.RELEASE_VERSION }}" | |
git push origin main | |
publish-docker-image: | |
needs: [build-release-artifacts] | |
name: Publishing Docker image to Docker Hub | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get release artifacts | |
uses: actions/download-artifact@v2 | |
with: | |
name: artifacts | |
path: artifacts | |
- name: Set release version | |
shell: bash | |
run: | | |
release_version="$(cat ./artifacts/release-version)" | |
echo "RELEASE_VERSION=$release_version" >> $GITHUB_ENV | |
- name: Validate release environment variables | |
run: | | |
echo "Release version: ${{ env.RELEASE_VERSION }}" | |
- name: Login to Docker Hub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKER_USERNAME }} | |
password: ${{ secrets.DOCKER_PASSWORD }} | |
- name: Push to Docker Hub | |
uses: docker/build-push-action@v5 | |
with: | |
tags: deepu105/kdash:latest, deepu105/kdash:${{ env.RELEASE_VERSION }} | |
push: true | |
publish-cargo: | |
name: Publishing to Cargo | |
needs: [build-release-artifacts] | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
profile: minimal # minimal component installation (ie, no documentation) | |
- run: | | |
sudo apt-get update | |
sudo apt-get install -y -qq pkg-config libssl-dev libxcb1-dev libxcb-render0-dev libxcb-shape0-dev libxcb-xfixes0-dev | |
- uses: actions-rs/cargo@v1 | |
with: | |
command: publish | |
args: --token ${{ secrets.CARGO_API_KEY }} --allow-dirty |