Skip to content

Commit

Permalink
Test release workflow to publish latest build
Browse files Browse the repository at this point in the history
  • Loading branch information
huxingyi committed Feb 25, 2023
1 parent 6a2aeae commit cfaaabe
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 1 deletion.
13 changes: 13 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -96,6 +96,19 @@ jobs:
with:
name: dust3d-${{ github.event.workflow_run.head_branch }}
path: dust3d-${{ github.event.workflow_run.head_branch }}/
- name: Clone Target Repository
uses: actions/checkout@v3
with:
repository: https://github.com/huxingyi/huxingyi.github.io.git
- name: Copy and Commit
run: |
cp ${GITHUB_WORKSPACE}/Dust3D-win32-x86_64.zip download/dust3d-latest-preview.zip
git config --global user.email ""
git config --global user.name "bot"
git add download/dust3d-latest-preview.zip
timestamp=$(TZ=":Australia/Sydney" date)
git commit -m "Update latest windows build at ${timestamp}"
git push origin HEAD
macos-upload:
if: ${{ github.event.workflow_run.conclusion == 'success' }}
runs-on: macos-latest
Expand Down
2 changes: 1 addition & 1 deletion application/application.pro
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ QT += core gui opengl widgets svg
TARGET = dust3d
TEMPLATE = app

HUMAN_VERSION = "1.0.0-rc.8"
HUMAN_VERSION = "1.0.0-rc.8.preview"
VERSION = 1.0.0.38

QMAKE_TARGET_COMPANY = Dust3D
Expand Down

0 comments on commit cfaaabe

Please sign in to comment.