Skip to content

build(deps): bump simple-elf/allure-report-action from 1.13 to 1.14 #5

build(deps): bump simple-elf/allure-report-action from 1.13 to 1.14

build(deps): bump simple-elf/allure-report-action from 1.13 to 1.14 #5

Workflow file for this run

name: server-release
run-name: ${{ github.actor }} server release
permissions:
contents: write
packages: write
attestations: write
id-token: write
on:
workflow_dispatch:
inputs:
dry-run:
description: Skip Docker push and GitHub release
type: boolean
default: false
push:
tags:
- "job-hunting-server@*"
jobs:
prepare:
runs-on: ubuntu-latest
outputs:
version: ${{ steps.set-version.outputs.VERSION }}
steps:
- name: Set VERSION
id: set-version
run: echo "VERSION=${GITHUB_REF_NAME#job-hunting-server@}" >> "$GITHUB_OUTPUT"
build:
needs: prepare
uses: ./.github/workflows/reusable/server-build.yml

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

View workflow run for this annotation

GitHub Actions / .github/workflows/server-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.version }}
dry-run: ${{ inputs.dry-run || false }}
secrets: inherit