Skip to content

Commit

Permalink
Update github-actions-demo.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
matheus002 authored Aug 1, 2024
1 parent fe5de81 commit 01ab036
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/github-actions-demo.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,6 @@ jobs:
run: |
echo "${{ secrets.SECRET_JSON }}" | base64 -d > scripts/test.json
echo "${{ secrets.SECRET_GOOGLE_PLIST }}" | base64 -d > scripts/info.plist
- name: Commit changes
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git add .
git commit -m "Automated update to file.txt"
- name: Update EXPO_PUBLIC_APP_VERSION
id: update-version
run: |
Expand All @@ -46,6 +40,12 @@ jobs:
# Output the new version
echo "New version: $new_version"
- name: Commit changes
run: |
git config --global user.name 'github-actions[bot]'
git config --global user.email 'github-actions[bot]@users.noreply.github.com'
git add .
git commit -m "Automated update to file.txt"
- name: Push changes
uses: ad-m/github-push-action@v0.6.0
Expand Down

0 comments on commit 01ab036

Please sign in to comment.