Fix L10N export product name #28
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Release | |
| on: | |
| pull_request: | |
| types: [closed] | |
| branches: [main] | |
| permissions: | |
| contents: write | |
| jobs: | |
| create-tag: | |
| if: github.event.pull_request.merged == true && startsWith(github.event.pull_request.head.ref, 'release/v') | |
| runs-on: ubuntu-latest | |
| outputs: | |
| tag: ${{ steps.tag.outputs.tag }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Create and push tag | |
| id: tag | |
| run: | | |
| # Extract version from branch name (release/v20260205.0 -> v20260205.0) | |
| TAG="${GITHUB_HEAD_REF#release/}" | |
| # Check tag doesn't already exist | |
| if git rev-parse -q --verify "refs/tags/${TAG}" >/dev/null 2>&1; then | |
| echo "Error: git tag '${TAG}' already exists" | |
| exit 1 | |
| fi | |
| # Configure git | |
| git config user.name "github-actions[bot]" | |
| git config user.email "github-actions[bot]@users.noreply.github.com" | |
| # Create and push tag | |
| git tag "${TAG}" | |
| git push origin "${TAG}" | |
| echo "Created and pushed tag: ${TAG}" | |
| echo "tag=${TAG}" >> "$GITHUB_OUTPUT" | |
| build-macos: | |
| needs: create-tag | |
| strategy: | |
| matrix: | |
| include: | |
| - runner: macos-14 | |
| arch: arm64 | |
| - runner: macos-15-intel | |
| arch: x86_64 | |
| runs-on: ${{ matrix.runner }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Install Swift 6.2.0 | |
| uses: swift-actions/setup-swift@v2 | |
| with: | |
| swift-version: "6.2.0" | |
| - name: Verify Swift | |
| run: swift --version | |
| - name: Build (release) | |
| run: swift build -c release --arch ${{ matrix.arch }} | |
| - name: Package | |
| run: | | |
| BIN_NAME="fxios" | |
| OUT_DIR="dist" | |
| mkdir -p "$OUT_DIR" | |
| cp ".build/release/$BIN_NAME" "$OUT_DIR/$BIN_NAME" | |
| chmod +x "$OUT_DIR/$BIN_NAME" | |
| VERSION="${{ needs.create-tag.outputs.tag }}" | |
| TARBALL="fxios-${VERSION}-macos-${{ matrix.arch }}.tar.gz" | |
| tar -C "$OUT_DIR" -czf "$TARBALL" "$BIN_NAME" | |
| shasum -a 256 "$TARBALL" | tee "${TARBALL}.sha256" | |
| - name: Upload assets to GitHub Release | |
| uses: softprops/action-gh-release@v2 | |
| with: | |
| tag_name: ${{ needs.create-tag.outputs.tag }} | |
| files: | | |
| fxios-*.tar.gz | |
| fxios-*.tar.gz.sha256 |