Skip to content

Commit 7f92b4d

Browse files
committed
adds a "git pull" step to the workflow
1 parent 03a1ed2 commit 7f92b4d

File tree

1 file changed

+7
-0
lines changed

1 file changed

+7
-0
lines changed

.github/workflows/createNewAtomicSandBoxDemo.yml

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,18 @@ jobs:
1919
ImageOS: ubuntu22
2020
- uses: actions/checkout@v4
2121
- run: 'echo "payload: ${{ toJson(github.event.client_payload) }}"'
22+
23+
- name: Pull latest changes
24+
run: git pull
25+
env:
26+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
27+
2228
- name: Make a new Branch
2329
run: |
2430
git checkout -b "${{ github.event.client_payload.atomic_version }}"
2531
env:
2632
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
33+
2734
- name: Run script to update package.json and CDN in index.html on new branch
2835
run: |
2936
gem install nokogiri

0 commit comments

Comments
 (0)