Skip to content

Commit 4e9c95d

Browse files
authored
1 parent 150396b commit 4e9c95d

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

.github/workflows/maven-and-native.yml

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -58,21 +58,21 @@ jobs:
5858
git config --local user.name "$GITHUB_ACTOR via GitHub Actions"
5959
git config --local user.email "[email protected]"
6060
git tag -a "$TAG_NAME" -m "Tagged automatically by GitHub Actions ${{ github.workflow }}"
61-
echo "::set-output name=create_tag::true"
61+
echo "create_tag=true" >> $GITHUB_OUTPUT
6262
else
6363
echo "Tag: $TAG_NAME already exists"
64-
echo "::set-output name=create_tag::false"
64+
echo "create_tag=false" >> $GITHUB_OUTPUT
6565
fi
6666
VERSION=`git describe --match "v[0-9\.]*" --long --always`
6767
VERSION=${VERSION:1}
6868
else
6969
echo "Not on master"
70-
echo "::set-output name=create_tag::false"
70+
echo "create_tag=false" >> $GITHUB_OUTPUT
7171
VERSION=${MVNVER}
7272
fi
7373
echo "Version: $VERSION"
74-
echo "::set-output name=version::${VERSION}"
75-
echo "::set-output name=tag_name::${TAG_NAME}"
74+
echo "version=${VERSION}" >> $GITHUB_OUTPUT
75+
echo "tag_name=${TAG_NAME}" >> $GITHUB_OUTPUT
7676
7777
javatest:
7878
name: Java ${{ matrix.java }} Test
@@ -141,7 +141,7 @@ jobs:
141141
echo "Get::allow-downgrades \"true\";" | sudo tee /etc/apt/apt.conf.d/99-downgrades
142142
echo "Get::Assume-Yes \"true\";" | sudo tee -a /etc/apt/apt.conf.d/99-downgrades
143143
sudo ./resources/ubuntu-build-image/ppa-purge.sh ppa:ondrej/php -y true
144-
if [ "${{ matrix.arch }}" != "i386" ] && [ "${{ matrix.arch }}" != "x86-64" ]; then
144+
if [ "${{ matrix.arch }}" != "x86" ] && [ "${{ matrix.arch }}" != "x86-64" ]; then
145145
sudo cp -f resources/ubuntu-build-image/ports-sources.list /etc/apt/sources.list
146146
fi
147147
sudo ./resources/ubuntu-build-image/packages.sh ${{ matrix.arch }} ${{ env.RELEASE_JAVA_VERSION }}

0 commit comments

Comments
 (0)