Skip to content

v1.35.0

v1.35.0 #10

Workflow file for this run

on:
push:
tags:
- "*.*"
name: Build and Release
jobs:
build-releases:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Cache build artifacts
id: cache-cargo
uses: actions/cache@v2
with:
path: |
~/.cargo/bin
~/.cargo/registry
~/.cargo/git
target
key: build-${{ runner.os }}-cargo-any
- name: Install Rust toolchain
uses: actions-rs/toolchain@v1
with:
toolchain: stable
components: rustfmt
override: true
- name: Install cross-compilation tools (if needed)
run: which cross >/dev/null || cargo install cross
- name: Verify versions
run: rustc --version && rustup --version && cargo --version && cross --version
- name: Get current tag
id: current_tag
uses: WyriHaximus/github-action-get-previous-tag@v1
- name: Release package
run: cargo publish --no-verify --token ${CRATES_TOKEN}
env:
CRATES_TOKEN: ${{ secrets.CRATES_TOKEN }}
- name: Release binaries
run: ./scripts/release_binaries.sh --version=v${{ steps.current_tag.outputs.tag }}
- name: Release new version
uses: softprops/action-gh-release@v1
with:
tag_name: ${{ steps.current_tag.outputs.tag }}
name: Bloom v${{ steps.current_tag.outputs.tag }}
body: "⚠️ Changelog not yet provided."
files: ./v${{ steps.current_tag.outputs.tag }}-*.tar.gz
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
build-packages:
needs: build-releases
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Build packages
run: ./scripts/build_packages.sh
- name: Push packages to Packagecloud
uses: faucetsdn/action-packagecloud-upload-debian-packages@v1
with:
path: ./packages
repo: ${{ secrets.PACKAGECLOUD_REPO }}
token: ${{ secrets.PACKAGECLOUD_TOKEN }}
build-docker:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Acquire Docker image metadata
id: metadata
uses: docker/metadata-action@v4
with:
images: valeriansaliou/bloom
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v3
with:
context: .
tags: ${{ steps.metadata.outputs.tags }}
labels: ${{ steps.metadata.outputs.labels }}
push: true