This commit is contained in:
Lucio
2023-11-16 16:30:44 -06:00
parent 57dab4641e
commit a24420cfff

View File

@@ -18,8 +18,7 @@ jobs:
uses: actions/checkout@v2 uses: actions/checkout@v2
- name: Generate JSON - name: Generate JSON
run: | run: echo '{"key": "value"}' > data.json
echo '{"key": "value"}' > data.json
- name: Display contents of directory - name: Display contents of directory
run: ls run: ls
@@ -29,3 +28,28 @@ jobs:
with: with:
name: generated-json name: generated-json
path: data.json path: data.json
upload-to-repo:
runs-on: ubuntu-latest
needs: generate-json
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Download JSON artifact
uses: actions/download-artifact@v2
with:
name: generated-json
path: downloaded-json
- name: Display contents of downloaded directory
run: ls downloaded-json
- name: Commit changes and push back to repository
run: |
git config user.name "GitHub Actions"
git config user.email "<actions-bot>@users.noreply.github.com"
git add downloaded-json/data.json
git commit -m "Add generated JSON"
git push