diff --git a/.github/actions/bootstrap-project/action.yml b/.github/actions/bootstrap-project/action.yml index a1228d3aa..949a37737 100644 --- a/.github/actions/bootstrap-project/action.yml +++ b/.github/actions/bootstrap-project/action.yml @@ -18,6 +18,9 @@ runs: echo "$CONSTANTS" > Tests/ProcessOutTests/Resources/Constants.yml echo "$CONSTANTS" > Example/Example/Resources/Constants.yml shell: bash + - name: Select Xcode Version + run: sudo xcode-select -s '/Applications/Xcode_14.3.1.app/Contents/Developer' + shell: bash - name: Bootstrap Project run: ./Scripts/BootstrapProject.sh --skip-bundle-instal shell: bash diff --git a/.github/workflows/release_documentation.yml b/.github/workflows/release_documentation.yml index 1875c7643..c86b6dea1 100644 --- a/.github/workflows/release_documentation.yml +++ b/.github/workflows/release_documentation.yml @@ -24,9 +24,9 @@ jobs: - name: Build Documentation run: source Scripts/CreateDocumentation.sh - name: Upload artifact - uses: actions/upload-pages-artifact@v1 + uses: actions/upload-pages-artifact@v2 with: path: 'Docs' - name: Deploy to GitHub Pages id: deployment - uses: actions/deploy-pages@v1 + uses: actions/deploy-pages@v2