Skip to content

Commit

Permalink
Fix release ci (#258)
Browse files Browse the repository at this point in the history
* Fix build ubuntu version

* Bump up version to 2.1.1
  • Loading branch information
sidepelican committed Apr 23, 2024
1 parent ab2901a commit 43c7ec5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
- uses: actions/checkout@v4
- name: Create the binary
run: |
docker run --platform linux/arm64 --rm -v ${{ github.workspace }}:/work -w /work swift:${{ env.SWIFT_VERSION }} \
docker run --platform linux/arm64 --rm -v ${{ github.workspace }}:/work -w /work swift:${{ env.SWIFT_VERSION }}-focal \
./install-script.sh -s . -t mockolo -d /work -o mockolo.${{ matrix.destination.name }}.tar.gz
- name: Upload the binary
uses: actions/upload-artifact@v4
Expand Down Expand Up @@ -78,7 +78,7 @@ jobs:

check-portability-with-qemu:
needs: build-with-qemu
name: TestRun on ${{ matrix.destination.os }}
name: TestRun on ${{ matrix.destination.tag }}
runs-on: ubuntu-latest
strategy:
matrix:
Expand Down
2 changes: 1 addition & 1 deletion Sources/MockoloFramework/Version.swift
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,5 @@ public struct Version {
public let value: String

/// The current Mockolo version.
public static let current = Version(value: "2.1.0")
public static let current = Version(value: "2.1.1")
}

0 comments on commit 43c7ec5

Please sign in to comment.