Merge pull request #61 from CloudCannon/feat/origin-urls #35
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
# Based on: https://github.com/ClementTsang/bottom/blob/master/.github/workflows/deployment.yml | |
name: Release | |
on: | |
push: | |
tags: | |
- v* | |
env: | |
CARGO_TERM_COLOR: always | |
HUMANE_VERSION: "0.3.12" | |
jobs: | |
publish-crate: | |
name: Publish Crate | |
runs-on: ubuntu-20.04 | |
needs: publish-github-release | |
steps: | |
- name: Clone | |
uses: actions/checkout@v3 | |
- name: Cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
~/.rustup | |
target | |
rosey/target | |
key: ${{ runner.os }}-stable | |
- name: Setup | |
run: | | |
rustup install stable | |
- name: Get Version | |
run: echo GIT_VERSION="$(git describe --tags | sed 's/^v\(.*\)$/\1/')" >> $GITHUB_ENV | |
- name: Prepare Git | |
run: | | |
git config user.email "[email protected]" | |
git config user.name "Github Actions" | |
git checkout -b main | |
# Use throw-away branch so we don't push the changes to origin | |
git checkout -b deploy_branch | |
- name: Prepare Crates | |
run: | | |
# Update cargo version, | |
node ./.backstage/version.cjs | |
git add ./rosey/Cargo.toml | |
# Commit changes so cargo doesn't complain about dirty repo | |
git commit -m "Deploy changes." | |
- name: Build | |
working-directory: ./rosey | |
run: cargo build --release --verbose | |
- name: Publish | |
working-directory: ./rosey | |
run: cargo publish --allow-dirty | |
env: | |
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }} | |
publish-npm-package: | |
name: Publish NPM package | |
runs-on: ubuntu-20.04 | |
needs: publish-github-release | |
defaults: | |
run: | |
working-directory: ./wrappers/node | |
steps: | |
- name: Clone | |
uses: actions/checkout@v3 | |
- uses: actions/download-artifact@v4 | |
with: | |
path: wrappers/node/checksums | |
pattern: release-checksums-* | |
merge-multiple: true | |
- name: Prepare package | |
run: | | |
RELEASE_VERSION=${GITHUB_REF#refs/tags/} | |
npm version $(echo $RELEASE_VERSION | cut -c1-) | |
- name: Publish | |
run: npm publish | |
env: | |
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | |
publish-github-release: | |
name: Publish to GitHub | |
runs-on: ubuntu-20.04 | |
needs: test-and-build | |
defaults: | |
run: | |
working-directory: ./ | |
steps: | |
- name: Get Token | |
id: get_workflow_token | |
uses: peter-murray/workflow-application-token-action@v2 | |
with: | |
application_id: ${{ secrets.CC_OSS_BOT_ID }} | |
application_private_key: ${{ secrets.CC_OSS_BOT_PEM }} | |
- name: Clone | |
uses: actions/checkout@v3 | |
with: | |
token: ${{ steps.get_workflow_token.outputs.token }} | |
- name: Swap to main | |
uses: actions/checkout@v3 | |
with: | |
ref: main | |
fetch-depth: 0 # Full fetch | |
token: ${{ steps.get_workflow_token.outputs.token }} | |
- name: Get Version | |
run: echo GIT_VERSION="$(git describe --tags | sed 's/^v\(.*\)$/\1/')" >> $GITHUB_ENV | |
- name: Get Tag | |
run: echo GIT_TAG="$(node ./.backstage/get_tag.cjs)" >> $GITHUB_ENV | |
- uses: actions/download-artifact@v4 | |
with: | |
path: build-artifacts | |
pattern: release-* | |
merge-multiple: true | |
- name: Build CHANGELOG | |
if: env.GIT_TAG == 'latest' | |
run: | | |
node ./.backstage/changelog.cjs write | |
echo CHANGELOG=\"$(base64 -w 0 -i CHANGELOG.md)\" >> $GITHUB_ENV | |
echo SHA=\"$( git rev-parse main:CHANGELOG.md )\" >> $GITHUB_ENV | |
- name: Build CHANGELOG | |
if: env.GIT_TAG != 'latest' | |
run: | | |
echo "## Prerelease" > RELEASE.md | |
node ./.backstage/changelog.cjs write || true | |
- name: Commit new CHANGELOG | |
uses: octokit/[email protected] | |
if: env.GIT_TAG == 'latest' | |
id: push_changes | |
with: | |
route: PUT /repos/{owner}/{repo}/contents/CHANGELOG.md | |
owner: cloudcannon | |
repo: rosey | |
branch: main | |
message: Changelog for ${{ env.GIT_VERSION }} | |
sha: ${{ env.SHA }} | |
content: ${{ env.CHANGELOG }} | |
env: | |
GITHUB_TOKEN: ${{ steps.get_workflow_token.outputs.token }} | |
- name: Release documentation branch | |
uses: octokit/[email protected] | |
if: env.GIT_TAG == 'latest' | |
id: merge_docs | |
with: | |
route: POST /repos/{owner}/{repo}/merges | |
owner: cloudcannon | |
repo: rosey | |
base: production-docs | |
head: main | |
commit_message: Release documentation for ${{ env.GIT_VERSION }} | |
env: | |
GITHUB_TOKEN: ${{ steps.get_workflow_token.outputs.token }} | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') && env.GIT_TAG == 'latest' | |
with: | |
repository: cloudcannon/rosey | |
prerelease: false | |
body_path: RELEASE.md | |
files: | | |
build-artifacts/* | |
env: | |
GITHUB_TOKEN: ${{ steps.get_workflow_token.outputs.token }} | |
- name: Release | |
uses: softprops/action-gh-release@v1 | |
if: startsWith(github.ref, 'refs/tags/') && env.GIT_TAG != 'latest' | |
with: | |
repository: cloudcannon/rosey | |
prerelease: true | |
body_path: RELEASE.md | |
files: | | |
build-artifacts/* | |
env: | |
GITHUB_TOKEN: ${{ steps.get_workflow_token.outputs.token }} | |
test-and-build: | |
name: Test and Build | |
runs-on: ${{matrix.os}} | |
defaults: | |
run: | |
shell: bash | |
strategy: | |
matrix: | |
include: | |
- build: linux | |
os: ubuntu-latest | |
rust: stable | |
target: x86_64-unknown-linux-musl | |
cross: false | |
musl: true | |
- build: windows | |
os: windows-latest | |
rust: stable | |
target: x86_64-pc-windows-msvc | |
cross: false | |
musl: false | |
- build: macos | |
os: macos-latest | |
rust: stable | |
target: x86_64-apple-darwin | |
cross: false | |
musl: false | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 1 | |
- name: Cache | |
uses: actions/cache@v3 | |
with: | |
path: | | |
~/.cargo/registry | |
~/.cargo/git | |
~/.rustup | |
target | |
rosey/target | |
key: ${{ runner.os }}-${{ matrix.rust }} | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 16 | |
# From https://github.com/Emoun/duplicate/blob/master/.github/workflows/rust.yml | |
- name: Get Version | |
run: echo GIT_VERSION="$(git describe --tags | sed 's/^v\(.*\)$/\1/')" >> $GITHUB_ENV | |
- name: Get Tag | |
run: echo GIT_TAG="$(node ./.backstage/get_tag.cjs)" >> $GITHUB_ENV | |
- name: Verify Changelog | |
if: env.GIT_TAG == 'latest' | |
run: | | |
node ./.backstage/changelog.cjs | |
- name: Install Linker | |
if: matrix.cross | |
run: | | |
sudo apt update | |
sudo apt install ${{ matrix.linker }} | |
- name: Install Musl Tools | |
if: matrix.musl | |
run: | | |
sudo apt update | |
sudo apt install -y musl-tools musl-dev | |
- name: Install Rust | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: ${{ matrix.rust }} | |
target: ${{ matrix.target }} | |
override: true | |
default: true | |
components: rustfmt, clippy | |
- name: Install humane | |
uses: supplypike/setup-bin@v1 | |
with: | |
uri: "https://github.com/CloudCannon/humane/releases/download/v${{env.HUMANE_VERSION}}/humane-v${{env.HUMANE_VERSION}}-${{matrix.target}}.tar.gz" | |
name: "humane" | |
version: ${{env.HUMANE_VERSION}} | |
- name: Prepare Git | |
run: | | |
git config user.email "[email protected]" | |
git config user.name "Github Actions" | |
git checkout -b main | |
# Use throw-away branch so we don't push the changes to origin | |
git checkout -b deploy_branch | |
- name: Prepare Crates | |
run: | | |
# Update cargo version, | |
node ./.backstage/version.cjs | |
git add ./rosey/Cargo.toml | |
# Commit changes so cargo doesn't complain about dirty repo | |
git commit -m "Deploy changes." | |
- name: Build | |
working-directory: ./rosey | |
run: RELEASE_VERSION=${GITHUB_REF#refs/tags/} cargo build --release --target ${{ matrix.target }} | |
- name: Test CLI | |
working-directory: ./rosey | |
run: TEST_BINARY=./target/${{ matrix.target }}/release/rosey humane | |
- name: Package Artifacts | |
run: | | |
RELEASE_VERSION=${GITHUB_REF#refs/tags/} | |
EXEC_NAME="rosey" | |
ASSET_PATH="$EXEC_NAME-$RELEASE_VERSION-${{ matrix.target }}.tar.gz" | |
CHECKSUM_PATH="$ASSET_PATH.sha256" | |
if [ "$RUNNER_OS" == "Windows" ]; then | |
EXEC_NAME="rosey.exe" | |
fi | |
tar czf $ASSET_PATH -C rosey/target/${{ matrix.target }}/release $EXEC_NAME | |
if command -v gtar &> /dev/null; then | |
echo "Using gtar" | |
gtar czf $ASSET_PATH -C rosey/target/${{ matrix.target }}/release $EXEC_NAME | |
else | |
echo "Using system tar" | |
tar czf $ASSET_PATH -C rosey/target/${{ matrix.target }}/release $EXEC_NAME | |
fi | |
case $RUNNER_OS in | |
Windows) | |
sha256sum $ASSET_PATH > $CHECKSUM_PATH | |
;; | |
Linux) | |
sha256sum $ASSET_PATH > $CHECKSUM_PATH | |
;; | |
macOS) | |
shasum -a 256 $ASSET_PATH > $CHECKSUM_PATH | |
;; | |
esac | |
echo "ASSET_PATH=$ASSET_PATH" >> $GITHUB_ENV | |
echo "CHECKSUM_PATH=$CHECKSUM_PATH" >> $GITHUB_ENV | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: release-${{ matrix.target }} | |
path: | | |
${{ env.ASSET_PATH }} | |
${{ env.CHECKSUM_PATH }} | |
- name: Upload build artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: release-checksums-${{ matrix.target }} | |
path: | | |
${{ env.CHECKSUM_PATH }} |