File tree 1 file changed +15
-2
lines changed
1 file changed +15
-2
lines changed Original file line number Diff line number Diff line change 48
48
notify :
49
49
runs-on : ubuntu-latest
50
50
name : Notify Qt Modules Repository
51
- needs : [windows-msvc]
51
+ needs : [check, windows-msvc]
52
+ if : needs.check.outputs.deploy != 'false'
52
53
steps :
53
54
- name : Checkout
54
55
uses : actions/checkout@v4
60
61
run : gh --repo antony-jr/qtmodules workflow run gh-pages
61
62
62
63
windows-msvc :
64
+ if : " !contains(github.event.head_commit.message, '[skip builds]')"
63
65
runs-on : windows-2019
64
66
needs : check
65
- if : needs.check.outputs.deploy != 'false'
66
67
name : windows-msvc-v${{ matrix.toolset }}-${{ matrix.arch }}-qt-${{ matrix.qt_version }}-${{ matrix.build_type }}
67
68
strategy :
68
69
fail-fast : false
@@ -118,7 +119,19 @@ jobs:
118
119
cd ${{ github.workspace }}/output/
119
120
7z a ${{ github.workspace }}/upload/windows-msvc-v${{ matrix.toolset }}-qt-${{ matrix.qt_version }}-${{ matrix.arch }}-${{ matrix.build_type }}.zip QArchive
120
121
122
+ - name : Upload Builds to Continuous
123
+ uses : svenstaro/upload-release-action@v2
124
+ with :
125
+ repo_token : ${{ secrets.GITHUB_TOKEN }}
126
+ file : ${{ github.workspace }}/upload/windows-msvc-v${{ matrix.toolset }}-qt-${{ matrix.qt_version }}-${{ matrix.arch }}-${{ matrix.build_type }}.zip
127
+ tag : continuous
128
+ overwrite : true
129
+ prerelease : true
130
+ release_name : " Continuous Builds"
131
+ body : " Prebuilt QArchive from latest commit on master."
132
+
121
133
- id : upload_rel
134
+ if : needs.check.outputs.deploy != 'false'
122
135
name : Upload Asset
123
136
working-directory : ${{ github.workspace }}/upload
124
137
env :
You can’t perform that action at this time.
0 commit comments