Skip to content

Commit

Permalink
Update initiaterelease.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
hozkaya2000 authored Feb 23, 2024
1 parent 8f3d041 commit 2ee2ef5
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/initiaterelease.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,9 @@ jobs:
date=$(date '+%Y%m%d')
git checkout -b release-${date}
- name: Install xmllint
run: sudo apt-get update && sudo apt-get install libxml2-utils
run: |
# generate-release-vars.sh depends on these packages
sudo apt-get update && sudo apt-get install libxml2-utils
- name: Configure AWS Credentials
uses: aws-actions/configure-aws-credentials@v4
with:
Expand All @@ -46,6 +48,8 @@ jobs:
- name: Check for changes
id: stage
run: |
# Git diff returns exit code of 1 when there is a change staged
# We need the set statements to prevent erroring out
set +e
git diff --cached --quiet
echo "stage_exit_code=$?" >> "$GITHUB_OUTPUT"
Expand Down

0 comments on commit 2ee2ef5

Please sign in to comment.