Skip to content

Backend Server CI

Backend Server CI #30

Workflow file for this run

name: Backend Server CI
on:
release:
types: [ created ]
env:
CARGO_TERM_COLOR: always
PACKAGE_FILE: ${{ needs.create-nightly-release.outputs.package_prefix }}-${{ matrix.build_name }}.${{ startsWith(matrix.build_name, 'win') && 'zip' || 'tar.gz' }}

Check failure on line 9 in .github/workflows/build.yml

View workflow run for this annotation

GitHub Actions / Backend Server CI

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 9, Col: 17): Unrecognized named-value: 'needs'. Located at position 1 within expression: needs.create-nightly-release.outputs.package_prefix
CARGO_BUILD_DIR: target
jobs:
ci:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- build_name: linux-x86_64
os: ubuntu-22.04
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Install Rust toolchain
uses: dtolnay/rust-toolchain@stable
with:
toolchain: nightly
targets: ${{ matrix.target }}
components: rustfmt, clippy
- name: Install Linux dependencies
run: |
sudo apt-get update
- name: Cargo build
run: cargo build --release
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build Image and Push to DockerHub
id: docker_build
uses: docker/build-push-action@v4
with:
context: ${{ env.CARGO_BUILD_DIR }}
file: ./Dockerfile
push: true
platforms: linux/amd64,linux/arm64
tags: |
${{ secrets.DOCKERHUB_USERNAME }}/backend-server:${{ github.ref_name }}
${{ secrets.DOCKERHUB_USERNAME }}/backend-server:latest