Skip to content

Commit

Permalink
fix: Incorrect BuildUrl (#1)
Browse files Browse the repository at this point in the history
  • Loading branch information
knd775 authored Aug 13, 2022
1 parent 8678c81 commit ffb5369
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 7 deletions.
2 changes: 0 additions & 2 deletions .github/workflows/dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
token: ${{ secrets.INTEGRATIONS_FNM_BOT_TOKEN }}
- name: install
run: npm ci
- name: build
Expand Down
7 changes: 3 additions & 4 deletions dist/index.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/push-build-information.ts
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ export async function pushBuildInformation(
}

const pushEvent: PushEvent | undefined = context.payload as PushEvent
const repoUri: string = `https://github.com/${context.repo.owner}/${context.repo.repo}`
const repoUri = `https://github.com/${context.repo.owner}/${context.repo.repo}`
const commits: CommitDetail[] =
pushEvent?.commits?.map((commit: Commit) => {
return {
Expand Down

0 comments on commit ffb5369

Please sign in to comment.