Skip to content

Commit

Permalink
Forgot to remove ;
Browse files Browse the repository at this point in the history
  • Loading branch information
henrikwidlund committed Jan 17, 2025
1 parent cc83a93 commit 4279a9e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/github-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
tag=$(git describe --tags --abbrev=0)
# Build everything
ASSEMBLY_VERSION="${tag//v}"
if [ "${{ matrix.kind }}" == "linux-x64" ]; || [ "${{ matrix.kind }}" == "linux-arm64" ]; then
if [ "${{ matrix.kind }}" == "linux-x64" ] || [ "${{ matrix.kind }}" == "linux-arm64" ]; then
release_name="HostsParser-$tag-${{ matrix.target }}"
dotnet publish "./src/HostsParser/HostsParser.csproj" -r ${{ matrix.target }} -c Release -o release -p:Version="$ASSEMBLY_VERSION" -p:PublishAot=true
Expand Down

0 comments on commit 4279a9e

Please sign in to comment.