diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index abdb3fb97c..5ac7d57588 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -19,7 +19,7 @@ jobs: - name: PROD - Prepare GitHub release id: create_prod_release - uses: GoogleCloudPlatform/release-please-action@v2 + uses: GoogleCloudPlatform/release-please-action@v3 if: github.ref == 'refs/heads/main' with: command: github-release @@ -114,7 +114,7 @@ jobs: - name: Compress native fcli uses: svenstaro/upx-action@v2 with: - file: fcli + files: fcli - name: Basic test of native fcli run: ./fcli --help && ./fcli get --help @@ -157,7 +157,7 @@ jobs: - name: Compress native fcli uses: svenstaro/upx-action@v2 with: - file: fcli + files: fcli - name: Basic test of native fcli run: ./fcli --help && ./fcli get --help @@ -179,7 +179,6 @@ jobs: version: ${{ env.graal_version }} java-version: ${{ env.graal_java_version }} components: 'native-image' - native-image-musl: true github-token: ${{ secrets.GITHUB_TOKEN }} - uses: actions/download-artifact@v3 @@ -200,7 +199,7 @@ jobs: # - name: Compress native fcli # uses: svenstaro/upx-action@v2 # with: -# file: fcli.exe +# files: fcli.exe - name: Basic test of native fcli run: | @@ -233,7 +232,7 @@ jobs: - name: PROD - Prepare release PR if: github.ref == 'refs/heads/main' - uses: GoogleCloudPlatform/release-please-action@v2 + uses: GoogleCloudPlatform/release-please-action@v3 with: command: release-pr release-type: simple @@ -288,7 +287,7 @@ jobs: # Extract top-level documentation resources # TODO Should we do this only when building a release, or also for dev_main, # or for all (dev & release) versions like we do now? - unzip artifact/docs-gh-pages.zip -d "docs" + unzip -o artifact/docs-gh-pages.zip -d "docs" # Define the output directory, based on tag/branch name versionDir=docs/${{ needs.build.outputs.release_tag }} @@ -297,7 +296,7 @@ jobs: # while leaving documentation for other tags/branches intact (as checked out above) rm -rf "${versionDir}" mkdir -p "${versionDir}" - unzip artifact/docs-html.zip -d "${versionDir}" + unzip artifact/docs-jekyll.zip -d "${versionDir}" # Recreate version data files, which may be empty if no versions available cd docs