From 3e1d3b052653027836f10b829f199d3dfd4d52b9 Mon Sep 17 00:00:00 2001 From: Gabriel Minucci Date: Wed, 19 Feb 2025 14:04:24 +0100 Subject: [PATCH 1/2] chore: bump version number --- Sources/Variants/main.swift | 2 +- docs/GITHUB_ACTION.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Sources/Variants/main.swift b/Sources/Variants/main.swift index 642535b5..13bd9dc7 100644 --- a/Sources/Variants/main.swift +++ b/Sources/Variants/main.swift @@ -12,7 +12,7 @@ struct Variants: ParsableCommand { static var configuration = CommandConfiguration( commandName: "variants", abstract: "A command-line tool to setup deployment variants and working CI/CD setup", - version: "1.2.1", + version: "1.3.0", subcommands: [ Initializer.self, Setup.self, diff --git a/docs/GITHUB_ACTION.md b/docs/GITHUB_ACTION.md index 1aaf02dc..d308d3b8 100644 --- a/docs/GITHUB_ACTION.md +++ b/docs/GITHUB_ACTION.md @@ -11,7 +11,7 @@ If Github Actions is your CI and you use the [Github-hosted macOS runner](https: ```yaml - uses: backbase/variants@main with: - version: 1.2.1 + version: 1.3.0 spec: variants.yml platform: ios variant: beta From 9d5c8b60e480631dc08b9c9558c149b8030942e0 Mon Sep 17 00:00:00 2001 From: Gabriel Minucci Date: Wed, 19 Feb 2025 14:11:34 +0100 Subject: [PATCH 2/2] chore: update permissions for CI action --- .github/workflows/swiftlint.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/swiftlint.yml b/.github/workflows/swiftlint.yml index f304be40..2508cf5f 100644 --- a/.github/workflows/swiftlint.yml +++ b/.github/workflows/swiftlint.yml @@ -11,6 +11,9 @@ on: jobs: SwiftLint: runs-on: ubuntu-latest + permissions: + contents: read + pull-requests: write steps: - uses: actions/checkout@v3 - name: GitHub Action for SwiftLint