Update .forgejo/workflows/demo.yaml
Some checks failed
UiNamed workflow / test (push) Failing after 16s
Some checks failed
UiNamed workflow / test (push) Failing after 16s
This commit is contained in:
parent
d392280470
commit
cfc2b79b5c
|
|
@ -21,17 +21,21 @@ jobs:
|
||||||
- name: Setup deno
|
- name: Setup deno
|
||||||
run: curl -fsSL https://deno.land/install.sh | DENO_INSTALL=/usr/local sh
|
run: curl -fsSL https://deno.land/install.sh | DENO_INSTALL=/usr/local sh
|
||||||
|
|
||||||
- name: Test set variable
|
- name: Make changelog
|
||||||
id: build
|
id: changelog
|
||||||
run: |
|
run: |
|
||||||
{
|
{
|
||||||
echo "BUILD<<EOF"
|
echo 'CHANGELOG<<!EOF'
|
||||||
deno eval "console.log(JSON.stringify(Deno.build, null, '\n'))"
|
deno run -RWES --allow-run=git,cmd npm:conventional-changelog-cli -p conventionalcommits
|
||||||
echo EOF
|
echo '!EOF'
|
||||||
} >> "$GITHUB_OUTPUT"
|
} >> "$GITHUB_OUTPUT"
|
||||||
|
|
||||||
- name: Test get variable
|
- name: Upload release
|
||||||
run: echo '${{ steps.build.outputs.BUILD }}'
|
uses: actions/forgejo-release@v2
|
||||||
|
with:
|
||||||
|
direction: upload
|
||||||
|
release-dir: .vscode
|
||||||
|
release-notes: ${{ steps.changelog.outputs.CHANGELOG }}
|
||||||
|
|
||||||
- name: Test deno
|
- name: Test deno
|
||||||
run: deno --version
|
run: deno --version
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue