Skip to content

Commit

Permalink
Move token to secrets section
Browse files Browse the repository at this point in the history
  • Loading branch information
Supereg committed Sep 19, 2023
1 parent 57dd852 commit 3e129e6
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/xcodebuild-or-fastlane.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,10 +81,6 @@ on:
required: false
type: boolean
default: false
checkout_token:
description: "The Personal access token (PAT) to use with the checkout action"
required: false
type: string
checkout_submodules:
description: "Flag indicating if submodules should be automatically checked out."
required: false
Expand Down Expand Up @@ -114,6 +110,9 @@ on:
APPLE_ID:
description: 'The Apple ID you use to access the App Store Connect API.'
required: false
checkout_token:
description: "The Personal access token (PAT) to use with the checkout action"
required: false

jobs:
build_and_test:
Expand All @@ -125,7 +124,7 @@ jobs:
steps:
- uses: actions/checkout@v4
with:
token: ${{ inputs.checkout_token }}
token: ${{ secrets.checkout_token }}
submodules: ${{ inputs.checkout_submodules }}
- uses: maxim-lobanov/setup-xcode@v1
with:
Expand Down

0 comments on commit 3e129e6

Please sign in to comment.