Bump rexml from 3.2.6 to 3.2.8 #28
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
# This workflow builds alternate versions of the RDFa initial context | |
# and the derived JSON-LD context. | |
name: RDFa Initial Context publication | |
on: pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up Ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.2 | |
- name: Install dependencies | |
run: bundle install | |
- name: Create derivative files | |
run: bundle exec rake | |
- name: Commit derived files | |
uses: stefanzweifel/[email protected] | |
with: | |
commit_message: Update derived files | |
branch: ${{ github.head_ref }} | |
file_pattern: ./*.ttl ./*.rdf ./*.jsonld |