Context Metadata Update #245
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
# This workflow will build a package using Maven and then publish it to GitHub packages when a release is created | |
# For more information see: https://github.com/actions/setup-java#apache-maven-with-a-settings-path | |
name: Context Metadata Update | |
on: | |
schedule: | |
- cron: '0 0 * * 0' | |
workflow_dispatch: | |
jobs: | |
build: | |
name: 'Update Context Products from Registry' | |
runs-on: ubuntu-latest | |
if: github.actor != 'pdsen-ci' | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
lfs: true | |
token: ${{ secrets.ADMIN_GITHUB_TOKEN }} | |
- name: Set up JDK 1.8 | |
uses: actions/setup-java@v4 | |
with: | |
distribution: temurin | |
java-version: 11 | |
server-id: ossrh | |
server-username: MAVEN_USERNAME | |
server-password: MAVEN_PASSWORD | |
- name: Updating context product metadata | |
run: | | |
build/update_context.sh | |
git config --local user.email "[email protected]" | |
git config --local user.name "PDSEN CI Bot" | |
git pull origin main | |
echo "weekly update context product info from registry" | |
git add . | |
git commit -m "weekly update context product info from registry" --allow-empty | |
- name: Push changes | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.ADMIN_GITHUB_TOKEN }} | |
branch: main |