Skip to content

Commit

Permalink
ci: remove waiting for build process workaround (#75)
Browse files Browse the repository at this point in the history
Signed-off-by: Alessandro Yuichi Okimoto <yuichijpn@gmail.com>
  • Loading branch information
cre8ivejp committed Mar 11, 2024
1 parent e47047d commit 4dee135
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 22 deletions.
11 changes: 0 additions & 11 deletions .github/workflows/publish-cocoapods.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,17 +15,6 @@ jobs:
- name: Install Cocoapods
run: gem install cocoapods

# This is a workaround to ensure that we don't publish to Cocoapods before the Build and Integration tests workflow is finished.
- name: Wait for Build and Integration tests
if: ${{ ! github.event.inputs || github.event.inputs.skip_release_note == 'false' }}
uses: lewagon/wait-on-check-action@e106e5c43e8ca1edea6383a39a01c5ca495fd812 # v1.3.1
with:
ref: ${{ github.ref }}
# DO NOT CHANGE the check-name. This name is based on the workflow name defined in the build.yaml
check-name: "Unit and E2E tests"
repo-token: ${{ secrets.GITHUB_TOKEN }}
wait-interval: 10

- name: Deploy to cocoapods
env:
COCOAPODS_TRUNK_TOKEN: ${{ secrets.COCOAPODS_TRUNK_TOKEN }}
Expand Down
11 changes: 0 additions & 11 deletions .github/workflows/upload-framework.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,17 +12,6 @@ jobs:
steps:
- uses: actions/checkout@v3

# This is a workaround to ensure that we don't upload Framework to GitHub before the Build and Integration tests workflow is finished.
- name: Wait for Build and Integration tests
if: ${{ ! github.event.inputs || github.event.inputs.skip_release_note == 'false' }}
uses: lewagon/wait-on-check-action@e106e5c43e8ca1edea6383a39a01c5ca495fd812 # v1.3.1
with:
ref: ${{ github.ref }}
# DO NOT CHANGE the check-name. This name is based on the workflow name defined in the build.yaml
check-name: "Unit and E2E tests"
repo-token: ${{ secrets.GITHUB_TOKEN }}
wait-interval: 10

- name: Create xcframework
env:
CI: true
Expand Down

0 comments on commit 4dee135

Please sign in to comment.