Skip to content

Commit

Permalink
ci: retry
Browse files Browse the repository at this point in the history
  • Loading branch information
edgarkhanzadian committed Sep 22, 2024
1 parent c904bff commit de42d98
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 8 deletions.
15 changes: 8 additions & 7 deletions .github/actions/eas-deploy/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -86,13 +86,14 @@ runs:
github-token: ${{ inputs.LEATHER_BOT }}
script: |
const { BUILD_LINK } = process.env
console.log({ BUILD_LINK })
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: "Expo simulator build link: " + BUILD_LINK
})
if(BUILD_LINK) {
github.rest.issues.createComment({
issue_number: context.issue.number,
owner: context.repo.owner,
repo: context.repo.repo,
body: "Expo simulator build link: " + BUILD_LINK
})
}
- name: 🛫 Build for production 🛫
if: ${{ steps.extract_branch.outputs.branch == 'dev' }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/eas-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
# branches:
# - '**'

on: [pull_request, workflow_dispatch]
on: [pull_request]

permissions:
contents: write
Expand Down

0 comments on commit de42d98

Please sign in to comment.