v1.4.2 #6
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
on: | |
push: | |
tags: | |
- "v*.*.*" | |
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: Verify versions | |
run: rustc --version && rustup --version && cargo --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=${{ steps.current_tag.outputs.tag }} | |
- name: Release new version | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: ${{ steps.current_tag.outputs.tag }} | |
name: Sonic ${{ steps.current_tag.outputs.tag }} | |
body: "⚠️ Changelog not yet provided." | |
files: ./${{ steps.current_tag.outputs.tag }}-*.tar.gz | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_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/sonic | |
- 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 |