Skip to content

Commit

Permalink
#8 : Set up Github workflow for publishing
Browse files Browse the repository at this point in the history
* Preparation for `1.0.0` release.
  • Loading branch information
carlspring committed Jul 13, 2023
1 parent 9b1439f commit d30a6a5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build-and-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ jobs:
ls -al
- name: Get Version ID from the Versions List
if: ${{ steps.package.outputs.versionId != 'unknown' }}
if: ${{ steps.package.outputs.isSnapshot != true }}
id: package
run: |
# For dev
Expand Down Expand Up @@ -124,11 +124,11 @@ jobs:
echo "versionId=${VERSION_ID}" >> $GITHUB_OUTPUT
- name: Print Version ID
if: ${{ steps.package.outputs.versionId != 'unknown' }}
if: ${{ steps.package.outputs.isSnapshot == true }}
run: echo "The selected Version ID is ${{ steps.package.outputs.versionId }}"

- uses: actions/delete-package-versions@v4
if: ${{ steps.package.outputs.isSnapshot == 'true' }}
if: ${{ steps.package.outputs.isSnapshot == true }}
with:
token: ${{ secrets.CS_DEVOPS_BOT_TOKEN }}

Expand Down
2 changes: 1 addition & 1 deletion vertx-codeql-queries/ql/src/qlpack.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
---
name: carlspring/vertx-codeql-queries
version: 1.0.0-alpha
version: 1.0.0
library: false
warnOnImplicitThis: false
extractor: java
Expand Down

0 comments on commit d30a6a5

Please sign in to comment.