Skip to content

Commit

Permalink
Switch to filebased outputs
Browse files Browse the repository at this point in the history
  • Loading branch information
WyriHaximus committed May 22, 2023
1 parent d5385d1 commit 8c9ed6f
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 @@ -121,7 +121,7 @@ jobs:
uses: ./
with:
ignoreActions: "test-docker-image,Create Release,Wait for status checks"
checkInterval: 1
checkInterval: 30
env:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
- name: "Assert Output: status is successful"
Expand Down
2 changes: 1 addition & 1 deletion wait.php
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,6 @@
...$shas,
)->then(function (string $state) use($logger) {
$logger->info('Final status: ' . $state);
echo PHP_EOL, '::set-output name=status::' . $state, PHP_EOL;
file_put_contents(getenv('GITHUB_OUTPUT'), 'status=' . $state . "\n", FILE_APPEND);
})->done();
})();

0 comments on commit 8c9ed6f

Please sign in to comment.