Skip to content

Workflow file for this run

name: Build and Deploy
on:
push:
tags:
- "v*.*.*"
branches:
- "feat/universal_resolver"
workflow_call:
env:
CARGO_TERM_COLOR: always
jobs:
# test_server:
# uses: ./.github/workflows/test.yml
build:

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

View workflow run for this annotation

GitHub Actions / Build and Deploy

Invalid workflow file

The workflow is not valid. .github/workflows/build.yml (Line: 16, Col: 3): The workflow must contain at least one job with no dependencies.
name: Build ENState 🚀
runs-on: ubuntu-latest
needs: [test_server]
env:
SCCACHE_GHA_ENABLED: "true"
RUSTC_WRAPPER: "sccache"
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- run: |
rustup set auto-self-update disable
rustup toolchain install stable --profile minimal
- name: Run sccache-cache
uses: mozilla-actions/[email protected]
with:
version: "v0.7.4"
- run: cargo build --release
working-directory: server
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: |
ghcr.io/v3xlabs/enstate
tags: |
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=edge
type=sha
- name: Login to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: Build and push
id: docker_build
uses: docker/build-push-action@v3
with:
push: true
file: .github/.docker/Dockerfile
context: server
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=registry,ref=ghcr.io/v3xlabs/enstate:edge
cache-to: type=inline