Skip to content

add logback.xml

add logback.xml #1

Workflow file for this run

name: "Release"
on:
push:
tags:
- "v*"
jobs:
create_release:
runs-on: ubuntu-latest
outputs:
version: ${{ steps.version_tag.outputs.tag }}
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 1
- name: Get Tag
if: startsWith(github.ref, 'refs/tags/v')
uses: olegtarasov/[email protected]
id: version_tag
with:
tagRegex: "v(.*)"
- name: Upload Release Asset
uses: softprops/action-gh-release@v1
id: release
with:
name: "v${{ steps.version_tag.outputs.tag }}"
tag_name: "v${{ steps.version_tag.outputs.tag }}"
generate_release_notes: true
append_body: true
prerelease: false
fail_on_unmatched_files: true
- name: "Generate release changelog"
uses: heinrichreimer/[email protected]
with:
token: ${{ secrets.GITHUB_TOKEN }}
author: true
releaseUrl: ${{ steps.release.outputs.url }}
issues: false
pullRequests: true
- uses: stefanzweifel/git-auto-commit-action@v5
with:
commit_message: "Update CHANGELOG.md"
branch: master
commit_options: '--no-verify --signoff'
file_pattern: CHANGELOG.md
docker:
needs: ['create_release']
uses: "./.github/workflows/docker.yml"

Check failure on line 49 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / Release

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 49, Col: 11): Secret REGISTRY_TOKEN is required, but not provided while calling. .github/workflows/release.yml (Line: 56, Col: 15): Invalid secret, CR_PAT is not defined in the referenced workflow.
with:
docker_target: production
platforms: linux/amd64,linux/arm64
version: ${{ inputs.version }}
image: ${{ vars.IMAGE }}
secrets:
CR_PAT: ${{ secrets.CR_PAT }}
REGISTRY: ${{ secrets.REGISTRY }}
REGISTRY_USERNAME: ${{ secrets.REGISTRY_USERNAME }}
build:
needs: ['create_release']
uses: "./.github/workflows/build.yml"
with:
version: ${{ inputs.version }}
latest: true