-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* use openssl for android and wasm that already exports the target (#9) * use common cmake functions * use IFW * used versioned common and install qtdependencies for QVaultcli
- Loading branch information
Showing
4 changed files
with
168 additions
and
170 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,19 +13,30 @@ jobs: | |
matrix: | ||
os: [ubuntu-latest,macos-latest,windows-latest] | ||
|
||
uses: EddyTheCo/Common/.github/workflows/[email protected] | ||
permissions: | ||
contents: write | ||
uses: EddyTheCo/Common/.github/workflows/[email protected] | ||
with: | ||
os: ${{ matrix.os }} | ||
qtVersion: '6.6.0' | ||
qtVersion: '6.6.0' | ||
cmakeArgs: " -DQTDEPLOY=ON [email protected] -DREPO_URL=https://eddytheco.github.io/QVault -DCPACK_PACKAGE_VENDOR=estervtech" | ||
test: false | ||
|
||
build_doxygen: | ||
if: startsWith(github.ref, 'refs/tags/v') | ||
uses: EddyTheCo/Common/.github/workflows/[email protected] | ||
|
||
release: | ||
if: startsWith(github.ref, 'refs/tags/v') | ||
needs: build_test_package | ||
needs: [build_test_package, build_doxygen] | ||
runs-on: ubuntu-latest | ||
|
||
permissions: | ||
contents: write | ||
pages: write | ||
id-token: write | ||
|
||
environment: | ||
name: github-pages | ||
url: ${{ steps.deployment.outputs.page_url }} | ||
|
||
steps: | ||
|
||
|
@@ -34,7 +45,35 @@ jobs: | |
- uses: actions/download-artifact@v4 | ||
with: | ||
path: artifacts | ||
- name: Display structure of downloaded files | ||
run: ls -R | ||
|
||
- name: Move repositories to webpage | ||
run: | | ||
mv artifacts/docs/html github-pages | ||
rm -rf artifacts/docs | ||
mkdir github-pages/packages/ ${{runner.temp}}/platforms/ | ||
mv artifacts/*/_CPack_Packages/* ${{runner.temp}}/platforms/ | ||
for i in ${{runner.temp}}/platforms/*; do mv $i/IFW/*/repository/* $i/; rm -rf $i/IFW $i/TGZ; done; | ||
mv ${{runner.temp}}/platforms/* github-pages/packages/ | ||
rm -rf artifacts/*/_CPack_Packages | ||
- name: Package github-page | ||
working-directory: ${{ github.workspace }}/github-pages/ | ||
run: | | ||
cmake -E make_directory ${{runner.temp}}/page-packages | ||
cmake -E tar c ${{runner.temp}}/page-packages/github-pages.tar -- . | ||
- name: Releases | ||
uses: softprops/action-gh-release@v1 | ||
with: | ||
files: ./artifacts/*/* | ||
files: ./artifacts/*/* | ||
|
||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: 'github-pages' | ||
path: ${{runner.temp}}/page-packages/* | ||
|
||
- name: Deploy to GitHub Pages | ||
id: deployment | ||
uses: actions/deploy-pages@v4 |
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
Oops, something went wrong.