Skip to content

Commit

Permalink
Added more information for the dev builds
Browse files Browse the repository at this point in the history
  • Loading branch information
Logonz committed Apr 14, 2024
1 parent 16f24f5 commit f673264
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/build_dev.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,27 +56,25 @@ jobs:
# Create the QuestieDB build, will output toc_version
- name: Build QuestieDB
id: build
run: python build.py QuestieDB
run: python build.py QuestieDB ${{ github.sha }}
env:
GITHUB_ACTIONS: "true"
DEV_RELEASE: "true"

- name: Create QuestieDB.zip
uses: TheDoctor0/[email protected]
with:
type: 'zip'
directory: './.build/'
path: './QuestieDB'
filename: './QuestieDB.zip'

- name: Build directory 'ls'
run: ls -la .build/QuestieDB
filename: './QuestieDB-${{ steps.build.outputs.toc_version }}-dev-${{ github.sha }}.zip'

- name: Publish release
uses: ncipollo/release-action@v1
with:
artifacts: "./.build/QuestieDB.zip"
artifacts: "./.build/QuestieDB-${{ steps.build.outputs.toc_version }}-dev-${{ github.sha }}.zip"
name: "Development build version ${{ steps.build.outputs.toc_version }}"
body: "# Warning this is a development build, use at own risk!!\nBuild release body"
body: "# Warning this is a development build, use at own risk!!\n### SHA: ${{ github.sha }}\nBuild release body"
commit: "${{ github.sha }}"
tag: "dev-release"
prerelease: true
Expand Down

0 comments on commit f673264

Please sign in to comment.