Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Publishing preview packages daily (Lombiq Technologies: OCORE-151) #15552

Merged
merged 31 commits into from
Mar 28, 2024
Merged
Changes from 1 commit
Commits
Show all changes
31 commits
Select commit Hold shift + click to select a range
5d78be0
Separate GHA workflow for building the preview packages
Piedone Mar 19, 2024
5e12f87
Making the workflow run only when new commits are found
Piedone Mar 19, 2024
270ec78
Debug output
Piedone Mar 19, 2024
cf30aeb
Temporarily removing the rest of the workflow for testing
Piedone Mar 19, 2024
80ba4e1
Temporarily also running workflow on push
Piedone Mar 19, 2024
a45ba9a
Or rather for PRs
Piedone Mar 19, 2024
820e0c8
Temporary test check
Piedone Mar 19, 2024
e2178ce
Reverting temporary changes
Piedone Mar 19, 2024
4d3a93d
Temporarily running most of the preview workflow
Piedone Mar 19, 2024
642ffc4
Docs
Piedone Mar 19, 2024
9ebee7f
Revert "Temporarily running most of the preview workflow"
Piedone Mar 19, 2024
ec369c2
Grammar
Piedone Mar 19, 2024
62c54d4
Re-adding missing condition for the Functional Test failure step
Piedone Mar 19, 2024
46b925d
Re-adding functional test failure artifact upload
Piedone Mar 19, 2024
b354260
Root Readme branch reference formatting
Piedone Mar 19, 2024
283b58d
No need for a fetch-depth of 50 for the checkout
Piedone Mar 21, 2024
b78560b
Better condition handling
Piedone Mar 21, 2024
9e1da8e
Temporarily disabling most steps
Piedone Mar 21, 2024
83bb7ca
Temporarily running for PRs too
Piedone Mar 21, 2024
f7ba708
Fixing condition
Piedone Mar 21, 2024
de71483
Testing condition
Piedone Mar 21, 2024
a73fc5f
Reverting temporary changes
Piedone Mar 21, 2024
437d53d
Revert "Reverting temporary changes"
Piedone Mar 21, 2024
74ec940
Better conditions
Piedone Mar 21, 2024
82204ff
PS syntax
Piedone Mar 21, 2024
be10429
Fixing conditions
Piedone Mar 21, 2024
8c5f48b
Fixing conditions
Piedone Mar 21, 2024
77ab855
Restoring correct event condition
Piedone Mar 21, 2024
aad62b7
Fixing conditions
Piedone Mar 21, 2024
f52399b
Test condition
Piedone Mar 21, 2024
849bf2a
Reverting temporary changes
Piedone Mar 21, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Restoring correct event condition
Piedone committed Mar 21, 2024
commit 77ab8556e71fb39acc50b13213f1529cf55484ae
2 changes: 1 addition & 1 deletion .github/workflows/preview_ci.yml
Original file line number Diff line number Diff line change
@@ -20,7 +20,7 @@ jobs:
run: |
$hasCommitFromLastDay = ![string]::IsNullOrEmpty((git log --oneline --since '24 hours ago'))
Write-Output "Commits found in the last 24 hours: $hasCommitFromLastDay."
$shouldPublish = $hasCommitFromLastDay -and '${{ github.event_name }}' -eq 'pull_request'
$shouldPublish = $hasCommitFromLastDay -and '${{ github.event_name }}' -eq 'schedule'
"should-publish=$($shouldPublish ? 'true' : 'false')" >> $Env:GITHUB_OUTPUT
- uses: actions/setup-node@v3
if: steps.check-publish.outputs.should-publish