Skip to content

Prepare for v6.5.3.0 release #34

Prepare for v6.5.3.0 release

Prepare for v6.5.3.0 release #34

Workflow file for this run

name: publish_to_pages
on:
push:
branches:
- "main"
- "jsonld_IV"
jobs:
push2production:
runs-on: ubuntu-latest
env:
API_KEY: ${{ secrets.API_KEY }}
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}
permissions:
actions: write
checks: write
contents: write
deployments: write
id-token: write
packages: write
pages: write
pull-requests: write
repository-projects: write
statuses: write
steps:
- name: Check out the repository
uses: actions/checkout@v4
with:
fetch-depth: 0 # Fetch the complete commit history
- name: Set up Git
run: |
git config user.email "[email protected]"
git config user.name "Daniel Ellis"
git config credential.helper store
git config --global user.email "[email protected]"
git config --global user.name "Daniel Ellis"
git config --global push.default current
echo "GH_TOKEN=${{ secrets.GITHUB_TOKEN }}" >> $GITHUB_ENV
shell: bash
- name: create symbolic link without extension
id: push_to_production
run: |
cd data_descriptors;
find . -type f -name "*.json" -exec sh -c 'ln -s "$0" "${0%.json}"' {} \;
git add .;
git commit -m "production push";
git push --force origin production;