Actions: Update sellers date #66
Workflow file for this run
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
name: Sellers.json validation | ||
on: | ||
push: | ||
branches: | ||
- main | ||
pull_request: | ||
branches: | ||
- main | ||
jobs: | ||
verify-json-validation: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- name: Validate sellers.json | ||
id: validate-json | ||
with: | ||
path: './' | ||
run: | | ||
Check failure on line 19 in .github/workflows/validate_json.yml GitHub Actions / Sellers.json validationInvalid workflow file
|
||
cat sellers.json | jq -e | ||
- name: Update Timestamp | ||
id: json-timestamp | ||
with: | ||
path: './' | ||
run: | | ||
cat sellers.json | jq '.ext.last_updated = (now | todate)' > sellers.json |