Skip to content

Commit

Permalink
Optimize caching and rerun inspections
Browse files Browse the repository at this point in the history
  • Loading branch information
blaubaer committed Oct 11, 2024
1 parent c330bad commit 664c11d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -142,4 +142,4 @@ jobs:
uses: cloudflare/wrangler-action@v3
with:
apiToken: ${{ secrets.CLOUDFLARE_API_TOKEN }}
command: pages deploy --project-name=bifroest-engity-org var/doc
command: pages deploy --commit-dirty=true --project-name=bifroest-engity-org var/doc
2 changes: 1 addition & 1 deletion cmd/build/build.go
Original file line number Diff line number Diff line change
Expand Up @@ -360,7 +360,7 @@ func (this *build) resolveStages(ctx context.Context) (buildStages, error) {

// Check if the PR is allowed to have images...
if v := this.pr(); v > 0 {
pr, err := this.repo.prs.byId(ctx, int(v))
pr, err := this.repo.prs.byId(ctx, v)
if err != nil {
return nil, err
}
Expand Down

0 comments on commit 664c11d

Please sign in to comment.