New version #44
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
# This workflow runs on every push and checks whether everything looks good | |
name: Release | |
on: | |
push: | |
tags: | |
- "v*" | |
jobs: | |
linux: | |
env: | |
TARGET_DIR: target/release | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install latest nightly | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: nightly | |
override: true | |
components: rustfmt, clippy | |
- name: Install cargo deb | |
uses: actions-rs/cargo@v1 | |
with: | |
command: install | |
args: cargo-deb | |
- name: Build debian package | |
shell: bash | |
run: | | |
cargo deb --profile production --strip -p subwasm -o "subwasm_linux_amd64.deb" | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: linux | |
path: | | |
subwasm_linux_amd64.deb | |
macos: | |
env: | |
TARGET_DIR: target/production | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Get Release Version | |
run: | | |
echo GITHUB_REF=$GITHUB_REF | |
RELEASE_VERSION=${GITHUB_REF#refs/*/} | |
RAW_VERSION=${RELEASE_VERSION:1} | |
echo "RELEASE_VERSION=$RELEASE_VERSION" >> $GITHUB_ENV | |
echo "RAW_VERSION=$RAW_VERSION" >> $GITHUB_ENV | |
echo "SHORT_SHA=${GITHUB_SHA::8}" >> $GITHUB_ENV | |
- name: Install rust toolchain | |
uses: actions-rs/toolchain@v1 | |
with: | |
toolchain: stable | |
override: true | |
- name: Check tooling | |
shell: bash | |
run: | | |
tar --version | |
shasum --version | |
cargo --version | |
rustc --version | |
- name: Build MacOS binary | |
run: | | |
cargo build --locked --profile production | |
ls -al "${{ env.TARGET_DIR }}/subwasm" | |
- name: Check binary | |
env: | |
BINARY: "${{ env.TARGET_DIR }}/subwasm" | |
run: | | |
file $BINARY | |
$BINARY --version | |
$BINARY --help | |
- name: Compress & sha256 | |
run: | | |
tar -czf ${{ env.TARGET_DIR }}/subwasm_macos.tar.gz -C ${{ env.TARGET_DIR }} subwasm | |
SHA256=$(shasum -a 256 ${{ env.TARGET_DIR }}/subwasm_macos.tar.gz | awk '{ print $1}' | tee ${{ env.TARGET_DIR }}/subwasm_macos.tar.gz.sha256) | |
echo SHA256: $SHA256 | |
echo "SHA256=$SHA256" >> $GITHUB_ENV | |
- name: Upload MacOS artifacts | |
uses: actions/upload-artifact@v2 | |
with: | |
name: macos | |
path: | | |
${{ env.TARGET_DIR }}/subwasm_macos.tar.gz | |
${{ env.TARGET_DIR }}/subwasm_macos.tar.gz.sha256 | |
- name: Install tera MacOS binary v0.1.3 | |
run: | | |
URL=https://github.com/chevdor/tera-cli/releases/download/v0.1.3/tera-macos-v0.1.3.tar.gz | |
wget $URL | |
tar xvf tera-macos-v0.1.3.tar.gz -C /usr/local/bin | |
tera --version | |
# We do that before checking out master (in case we were not in master already) | |
- name: Prepare new Formula | |
env: | |
NAME: Subwasm | |
DESCRIPTION: "A command line utility written in Rust download, inspect and compare Substrate based chains WASM Runtimes" | |
SITE: https://github.com | |
REPO: chevdor/subwasm | |
SHA256: ${{env.SHA256}} | |
VERSION: ${{env.RAW_VERSION}} | |
run: | | |
tera --version | |
tera --template templates/formula.rb --env-only > $HOME/subwasm.rb | |
cat $HOME/subwasm.rb | |
- name: Update Homebrew Formula | |
run: | | |
cp -f $HOME/subwasm.rb Formula/subwasm.rb | |
git config --global user.name 'TeraBot' | |
git config --global user.email '[email protected]' | |
git commit Formula/subwasm.rb -m "build: new homebrew formula for ${{ env.RELEASE_VERSION }}" | |
git push origin HEAD:master | |
create_draft: | |
needs: ["linux", "macos"] | |
name: Create Draft | |
runs-on: ubuntu-latest | |
outputs: | |
release_url: ${{ steps.create-release.outputs.html_url }} | |
asset_upload_url: ${{ steps.create-release.outputs.upload_url }} | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Get Release Version | |
run: | | |
echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV | |
echo "SHORT_SHA=${GITHUB_SHA::8}" >> $GITHUB_ENV | |
- uses: actions/download-artifact@v2 | |
- name: Install tera | |
run: | | |
URL=https://github.com/chevdor/tera-cli/releases/download/v0.2.0/tera-cli_linux_amd64.deb | |
wget $URL | |
sudo dpkg -i tera-cli_linux_amd64.deb | |
tera --version | |
- name: Generate changelog | |
id: change_log | |
run: | | |
LAST_TAG=$(git describe --tags --abbrev=0 ${{ env.RELEASE_VERSION }}^ ) | |
JSON=$(git log $LAST_TAG..HEAD \ | |
--pretty=format:'{ "commit": "%H", "short_sha": "%h", "author": "%an", "date": "%ad", "message": "%s"},' \ | |
$@ | \ | |
perl -pe 'BEGIN{print "{ \"since\": \"'${LAST_TAG}'\", \"commits\": ["}; END{print "]}"}' | \ | |
perl -pe 's/},]/}]/') | |
echo $JSON | tera --template templates/changelog.md --stdin > changelog.md | |
- name: Render release notes | |
run: | | |
export DEBIAN_URL="https://github.com/chevdor/subwasm/releases/download/${{ env.RELEASE_VERSION }}/subwasm_linux_amd64_${{ env.RELEASE_VERSION }}.deb" | |
export MACOS_TGZ_URL="https://github.com/chevdor/subwasm/releases/download/${{ env.RELEASE_VERSION }}/subwasm_macos_${{ env.RELEASE_VERSION }}.tar.gz" | |
export CHANGELOG=$(cat changelog.md) | |
tera --env --env-only --template templates/release.md > RELEASE_NOTES.md | |
- name: Create Release | |
id: create-release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ env.RELEASE_VERSION }} | |
release_name: Subwasm ${{ env.RELEASE_VERSION }} (${{ env.SHORT_SHA }}) | |
body_path: ./RELEASE_NOTES.md | |
draft: true | |
publish-binaries: | |
runs-on: ubuntu-latest | |
needs: ["create_draft"] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Get Release Version | |
run: | | |
echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV | |
echo "SHORT_SHA=${GITHUB_SHA::8}" >> $GITHUB_ENV | |
- uses: actions/download-artifact@v2 | |
- name: Upload Debian package | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ needs.create_draft.outputs.asset_upload_url }} | |
asset_path: "linux/subwasm_linux_amd64.deb" | |
asset_name: "subwasm_linux_amd64_${{ env.RELEASE_VERSION }}.deb" | |
asset_content_type: application/vnd.debian.binary-package | |
- name: Upload MacOS archive | |
uses: actions/upload-release-asset@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
upload_url: ${{ needs.create_draft.outputs.asset_upload_url }} | |
asset_path: "macos/subwasm_macos.tar.gz" | |
asset_name: "subwasm_macos_${{ env.RELEASE_VERSION }}.tar.gz" | |
asset_content_type: application/gzip |