Create Release #100
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: Release | |
on: | |
push: | |
tags: | |
- "v*.*.*" | |
workflow_run: | |
workflows: ["Build nightly"] | |
types: | |
- completed | |
permissions: | |
packages: write | |
contents: write | |
jobs: | |
create-release: | |
name: Create Release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
if: github.event_name == 'workflow_run' | |
uses: actions/checkout@v4 | |
- name: Get version from Cargo.toml | |
if: github.event_name == 'workflow_run' | |
id: get_version | |
run: | | |
VERSION=$(grep '^version =' Cargo.toml | cut -d '"' -f2) | |
echo "VERSION=$VERSION" >> $GITHUB_OUTPUT | |
echo "NIGHTLY_TAG=v$VERSION-nightly" >> $GITHUB_OUTPUT | |
- name: Release | |
if: github.event_name == 'workflow_run' | |
uses: softprops/action-gh-release@v2 | |
with: | |
tag_name: ${{ steps.get_version.outputs.NIGHTLY_TAG }} | |
body: "Release ${{ steps.get_version.outputs.NIGHTLY_TAG }}" | |
- name: Release | |
if: github.event_name != 'workflow_run' | |
uses: softprops/action-gh-release@v2 | |
frontend: | |
name: Build frontend | |
timeout-minutes: 20 | |
continue-on-error: true | |
needs: create-release | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build frontend | |
run: | | |
cd frontend | |
npm install | |
npm run build | |
- name: Pack assets | |
run: | | |
tar -cf - frontend/dist | xz -9 > frontend.tar.xz | |
- name: Upload | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: frontend.tar.xz | |
asset_name: frontend.tar.xz | |
tag: ${{ github.ref }} | |
overwrite: true | |
body: "Release ${{ github.ref }}" | |
build: | |
runs-on: ${{ matrix.build-on }} | |
continue-on-error: true | |
needs: create-release | |
strategy: | |
matrix: | |
include: | |
- cpu: x86_64 | |
os: win | |
target: x86_64-pc-windows-msvc | |
build-on: windows-latest | |
build-with: cargo | |
exe: ".exe" | |
run-tests: true | |
- cpu: x86_64 | |
os: linux | |
target: x86_64-unknown-linux-musl | |
build-on: ubuntu-latest | |
build-with: cargo | |
exe: "" | |
run-tests: true | |
- cpu: aarch64 | |
os: linux | |
target: aarch64-unknown-linux-musl | |
build-on: ubuntu-latest | |
build-with: cross | |
exe: "" | |
run-tests: false | |
- cpu: aarch64 | |
os: macOS | |
target: aarch64-apple-darwin | |
build-on: macos-latest | |
build-with: cargo | |
exe: "" | |
run-tests: false | |
- cpu: x86_64 | |
os: macOS | |
target: x86_64-apple-darwin | |
build-on: macos-latest | |
build-with: cargo | |
exe: "" | |
run-tests: true | |
name: Build Release ${{ matrix.cpu }} ${{ matrix.os }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Extract version | |
id: version | |
run: | | |
echo version=${GITHUB_REF#refs/*/} | |
echo version=${GITHUB_REF#refs/*/} >> $GITHUB_OUTPUT | |
- name: Update musl tools | |
if: matrix.build-with == 'cargo' && matrix.os == 'linux' | |
run: | | |
sudo apt update | |
sudo apt install -y musl-tools | |
- name: Update Rust and add toolchain ${{ matrix.target }} | |
if: matrix.build-with == 'cargo' | |
run: | | |
rustup update | |
rustup target add ${{ matrix.target }} | |
- name: Install bin install if needed | |
if: matrix.build-with == 'cross' | |
run: | | |
wget -qO- https://github.com/cargo-bins/cargo-binstall/releases/latest/download/cargo-binstall-x86_64-unknown-linux-musl.tgz | tar xvz -C ~/.cargo/bin | |
- name: Install cross if needed | |
if: matrix.build-with == 'cross' | |
run: | | |
cargo binstall cross -y | |
- name: Build binary target/${{ matrix.target }}/release/erc20_processor | |
run: | | |
${{ matrix.build-with }} build --profile release-lto --target ${{ matrix.target }} | |
- name: Create and push docker image | |
if: matrix.os == 'linux' && matrix.cpu == 'x86_64' | |
run: | | |
${{ matrix.build-with }} build -p web3_test_proxy --profile release-lto --target ${{ matrix.target }} | |
cp target/${{ matrix.target }}/release-lto/erc20_processor build/docker/erc20_processor | |
cp target/${{ matrix.target }}/release-lto/web3_test_proxy build/docker/web3_test_proxy | |
# login to ghcr.io | |
docker login ghcr.io -u ${{ github.actor }} -p ${{ secrets.GITHUB_TOKEN }} | |
# build with full metadata | |
docker build \ | |
--label "org.opencontainers.image.source=https://github.com/${GITHUB_REPOSITORY}" \ | |
--label "org.opencontainers.image.description=Erc20 payment processor binary in docker alpine" \ | |
--label "org.opencontainers.image.licenses=MIT" \ | |
-t ghcr.io/golemfactory/erc20_processor:latest \ | |
build/docker | |
# tag image with the same tag as the release | |
docker tag \ | |
ghcr.io/golemfactory/erc20_processor:latest \ | |
ghcr.io/golemfactory/erc20_processor:${{ steps.version.outputs.version }} | |
# push one image with two tags into repository | |
docker push --all-tags ghcr.io/golemfactory/erc20_processor | |
- name: Compress binaries | |
run: | | |
# mv target/${{ matrix.target }}/release-lto/erc20_processor${{ matrix.exe }} target/${{ matrix.target }}/release-lto/erc20_processor${{ matrix.exe }} | |
tar -cf - -C target/${{ matrix.target }}/release-lto/ erc20_processor${{ matrix.exe }} | xz -9 > erc20_processor.tar.xz | |
- name: Upload | |
uses: svenstaro/upload-release-action@v2 | |
with: | |
repo_token: ${{ secrets.GITHUB_TOKEN }} | |
file: erc20_processor.tar.xz | |
asset_name: erc20_processor-${{ matrix.os }}-${{ matrix.cpu }}.tar.xz | |
tag: ${{ github.ref }} | |
overwrite: true | |
body: "Release ${{ steps.version.outputs.version }}" |