Skip to content

build(deps): bump the production-dependencies group with 25 updates #10

build(deps): bump the production-dependencies group with 25 updates

build(deps): bump the production-dependencies group with 25 updates #10

name: server-dev-release
run-name: ${{ github.actor }} server dev build
permissions:
contents: write
packages: write
attestations: write
id-token: write
on:
workflow_dispatch:
push:
branches: [dev]
paths:
- "apps/server/**"
- "apps/server-ui/**"
jobs:
prepare:
runs-on: ubuntu-latest
outputs:
dev-version: ${{ steps.gen.outputs.DEV_VERSION }}
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683
with:
fetch-depth: 0
- id: gen
run: |
dev_version=$(bash scripts/dev-version.sh apps/server/Cargo.toml)
echo "DEV_VERSION=$dev_version" >> "$GITHUB_ENV"
echo "DEV_VERSION=$dev_version" >> "$GITHUB_OUTPUT"
build:
needs: prepare
uses: ./.github/workflows/reusable/server-build.yml

Check failure on line 36 in .github/workflows/server-dev-release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/server-dev-release.yml

Invalid workflow file

invalid value workflow reference: workflows must be defined at the top level of the .github/workflows/ directory
with:
version: ${{ needs.prepare.outputs.dev-version }}
prerelease: true
tag-name: dev-server-${{ github.run_number }}
secrets: inherit
cleanup:
needs: build
uses: ./.github/workflows/reusable/dev-release-cleanup.yml
with:
tag-prefix: dev-server-
secrets: inherit