Skip to content

Commit

Permalink
Update release step
Browse files Browse the repository at this point in the history
Signed-off-by: Prabhu Subramanian <[email protected]>
  • Loading branch information
prabhu committed Nov 15, 2024
1 parent ce64722 commit d5b8bd0
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/app-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ jobs:
run: |
zip --junk-paths -r cdxgen-dist.zip cdxgen-latest-x86_64.AppImage
- name: Release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/binary-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
name: ${{ matrix.vartifact }}
path: ${{ matrix.vartifact }}
- name: Release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/npm-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ jobs:
continue-on-error: true
if: startsWith(github.ref, 'refs/tags/')
- name: Attach cdx sbom to release
uses: softprops/action-gh-release@v1
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
files: |
Expand Down
2 changes: 1 addition & 1 deletion ci/base-images/opensuse/Dockerfile.python310
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ RUN set -e; \
esac \
&& zypper refresh && zypper --non-interactive update && zypper --non-interactive install -l --no-recommends gcc12 gcc12-c++ gcc12-fortran \
python310 python310-devel python310-pip findutils java-23-openjdk-devel \
bzip2 git-core wget zip unzip make gawk nodejs22 npm22 nodejs22-devel gdal-devel libxml2-devel libxslt-devel \
bzip2 git-core wget zip unzip make gawk nodejs22 npm22 nodejs22-devel gdal-devel libxml2-devel \
&& update-alternatives --install /usr/bin/cc cc /usr/bin/gcc-12 10 \
&& update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 10 \
&& update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 10 \
Expand Down
2 changes: 1 addition & 1 deletion ci/base-images/opensuse/Dockerfile.python39
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ RUN set -e; \
esac \
&& zypper refresh && zypper --non-interactive update && zypper --non-interactive install -l --no-recommends gcc12 gcc12-c++ gcc12-fortran \
python39 python39-devel python39-pip findutils java-23-openjdk-devel \
bzip2 git-core wget zip unzip make gawk nodejs22 npm22 nodejs22-devel gdal-devel libxml2-devel libxslt-devel \
bzip2 git-core wget zip unzip make gawk nodejs22 npm22 nodejs22-devel gdal-devel libxml2-devel \
&& update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-12 10 \
&& update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-12 10 \
&& update-alternatives --install /usr/bin/gfortran gfortran /usr/bin/gfortran-12 10 \
Expand Down
2 changes: 1 addition & 1 deletion ci/base-images/sle/Dockerfile.python311
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ RUN set -e; \
*) echo >&2 "error: unsupported architecture: '$ARCH_NAME'"; exit 1 ;; \
esac \
&& zypper refresh && zypper --non-interactive update && zypper --non-interactive install -l --no-recommends gcc${GCC_VERSION} gcc${GCC_VERSION}-c++ gcc${GCC_VERSION}-fortran \
bzip2 git-core wget zip unzip make gawk libxml2-devel libxslt-devel \
bzip2 git-core wget zip unzip make gawk libxml2-devel \
&& update-alternatives --install /usr/bin/cc cc /usr/bin/gcc-${GCC_VERSION} 10 \
&& update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-${GCC_VERSION} 10 \
&& update-alternatives --install /usr/bin/g++ g++ /usr/bin/g++-${GCC_VERSION} 10 \
Expand Down

0 comments on commit d5b8bd0

Please sign in to comment.