Skip to content

Commit

Permalink
Merge pull request #420 from nimblehq/chore/405-fix-file-name
Browse files Browse the repository at this point in the history
[#405] [Chore] Refactor workflow yml files to snake_case naming convention
  • Loading branch information
vnntsu authored Jan 3, 2023
2 parents 10ff37d + 6a441f1 commit 054d083
Show file tree
Hide file tree
Showing 5 changed files with 22 additions and 22 deletions.
File renamed without changes.
File renamed without changes.
2 changes: 1 addition & 1 deletion .github/workflows/publish_docs_to_wiki.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,4 @@ jobs:
USER_NAME: team-nimblehq
USER_EMAIL: [email protected]
secrets:
USER_TOKEN: ${{ secrets.NIMBLE_DEV_TOKEN }}
USER_TOKEN: ${{ secrets.NIMBLE_DEV_TOKEN }}
36 changes: 18 additions & 18 deletions .github/workflows/test_install_script.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,25 +6,25 @@ on:

jobs:
Test:
name: Test
runs-on: macOS-12
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}
name: Test
runs-on: macOS-12
steps:
- name: Cancel Previous Runs
uses: styfle/[email protected]
with:
access_token: ${{ github.token }}

- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: actions/checkout@v2
with:
fetch-depth: 0

- name: Bundle install
run: bundle install
- name: Bundle install
run: bundle install

- name: Start Install Script for Template App
run: sh make.sh --bundle-id co.nimblehq.template --bundle-id-staging co.nimblehq.template.staging --project-name TemplateApp
- name: Start Install Script for Template App
run: sh make.sh --bundle-id co.nimblehq.template --bundle-id-staging co.nimblehq.template.staging --project-name TemplateApp

- name: Build and Test
run: bundle exec fastlane buildAndTest
env:
CI: true
- name: Build and Test
run: bundle exec fastlane buildAndTest
env:
CI: true
6 changes: 3 additions & 3 deletions .github/workflows/test_upload_build_to_test_flight.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
uses: webfactory/[email protected]
with:
ssh-private-key: ${{ secrets.SSH_PRIVATE_KEY }}

- name: Bundle install
run: bundle install

Expand All @@ -42,7 +42,7 @@ jobs:
key: ${{ runner.os }}-pods-${{ hashFiles('**/Podfile.lock') }}
restore-keys: |
${{ runner.os }}-pods-
- name: Start Install Script for Template App
run: sh make.sh --bundle-id co.nimblehq.ios.templates --bundle-id-staging co.nimblehq.ios.templates.staging --project-name TemplateApp

Expand All @@ -60,7 +60,7 @@ jobs:
run: bundle exec fastlane updateProvisionSettings
env:
MATCH_PASSWORD: ${{ secrets.MATCH_PASS }}

- name: Build App and Distribute to AppStore
run: bundle exec fastlane buildAndUploadToAppStore
env:
Expand Down

0 comments on commit 054d083

Please sign in to comment.