Update .forgejo/workflows/demo.yaml
Some checks failed
UiNamed workflow / test (push) Failing after 16s

This commit is contained in:
julien.oculi 2025-02-22 01:17:50 +01:00
parent d392280470
commit cfc2b79b5c

View file

@ -21,17 +21,21 @@ jobs:
- name: Setup deno
run: curl -fsSL https://deno.land/install.sh | DENO_INSTALL=/usr/local sh
- name: Test set variable
id: build
- name: Make changelog
id: changelog
run: |
{
echo "BUILD<<EOF"
deno eval "console.log(JSON.stringify(Deno.build, null, '\n'))"
echo EOF
echo 'CHANGELOG<<!EOF'
deno run -RWES --allow-run=git,cmd npm:conventional-changelog-cli -p conventionalcommits
echo '!EOF'
} >> "$GITHUB_OUTPUT"
- name: Test get variable
run: echo '${{ steps.build.outputs.BUILD }}'
- name: Upload release
uses: actions/forgejo-release@v2
with:
direction: upload
release-dir: .vscode
release-notes: ${{ steps.changelog.outputs.CHANGELOG }}
- name: Test deno
run: deno --version