db version 1 #48
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: push | |
permissions: | |
contents: write | |
deployments: write | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- run: | | |
git config user.name github-actions | |
git config user.email [email protected] | |
curl --data-binary @jobs.csv https://csvjson.fermyon.app/ > $GITHUB_WORKSPACE/src/data/jobsdata.json | |
git add . | |
git commit -m "generated" | |
git push |