aboutsummaryrefslogtreecommitdiffstats
path: root/.github
diff options
context:
space:
mode:
authorLibravatar Vijay Aravamudhan <vraravam@users.noreply.github.com>2022-11-04 15:58:50 +0530
committerLibravatar GitHub <noreply@github.com>2022-11-04 10:28:50 +0000
commit6864ae05f19756479857e263f2b99f873f589a73 (patch)
treeff6e480ba6be19bef98a958224a4f6939f8d9ccc /.github
parentchore: only post stable releases to reddit (#738) [skip ci] (diff)
downloadferdium-app-6864ae05f19756479857e263f2b99f873f589a73.tar.gz
ferdium-app-6864ae05f19756479857e263f2b99f873f589a73.tar.zst
ferdium-app-6864ae05f19756479857e263f2b99f873f589a73.zip
Change from 'set-output' to using env files (#737)
per https://github.blog/changelog/2022-10-11-github-actions-deprecating-save-state-and-set-output-commands/
Diffstat (limited to '.github')
-rw-r--r--.github/workflows/builds.yml2
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/builds.yml b/.github/workflows/builds.yml
index da3fe69d5..4998dcf94 100644
--- a/.github/workflows/builds.yml
+++ b/.github/workflows/builds.yml
@@ -120,7 +120,7 @@ jobs:
120 echo "Number of changes: $CHANGES_COUNT" 120 echo "Number of changes: $CHANGES_COUNT"
121 if [ $CHANGES_COUNT -eq 0 ] && [ $MANUAL_REBUILD != "true" ]; then 121 if [ $CHANGES_COUNT -eq 0 ] && [ $MANUAL_REBUILD != "true" ]; then
122 echo "No changes found - terminating the build" 122 echo "No changes found - terminating the build"
123 echo "::set-output name=should_run::false" 123 echo "should_run=false" >> $GITHUB_OUTPUT
124 else # changes > 0 (or) MANUAL_REBUILD=true 124 else # changes > 0 (or) MANUAL_REBUILD=true
125 echo "Pushing rebased commits" 125 echo "Pushing rebased commits"
126 git push origin $(git rev-parse --abbrev-ref HEAD) --no-verify 126 git push origin $(git rev-parse --abbrev-ref HEAD) --no-verify