fix ci tests #11
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish | ||
on: | ||
push: | ||
tags: | ||
- '**' | ||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: 🏗 Checkout code | ||
uses: actions/checkout@v4 | ||
- name: 🏗 Get release info | ||
id: query-release-info | ||
uses: release-flow/keep-a-changelog-action@v3 | ||
with: | ||
command: query | ||
version: latest | ||
- name: 🚀 Publish to Github releases | ||
uses: softprops/action-gh-release@v2 | ||
with: | ||
body: ${{ steps.query-release-info.outputs.release-notes }} | ||
make_latest: ${{ $GITHUB_REF_NAME == 'main' && true || false }} | ||
Check failure on line 26 in .github/workflows/publish.yml GitHub Actions / PublishInvalid workflow file
|
||
# prerelease: true | ||
# files: '*.vsix' |