Update Provider #113
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 Java project with Ant | |
# For more information see: https://help.github.com/actions/language-and-framework-guides/building-and-testing-java-with-ant | |
name: Update Provider | |
on: [workflow_dispatch] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
env: | |
luceeVersion: zero-6.0.0.495-SNAPSHOT | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up JDK 11 | |
uses: actions/setup-java@v3 | |
with: | |
java-version: '11' | |
distribution: 'temurin' | |
- name: Cache Maven packages | |
uses: actions/cache@v3 | |
with: | |
path: ~/.m2 | |
key: lucee-script-runner-maven-cache | |
- name: Trigger Lucee Update Providers | |
uses: lucee/script-runner@main | |
with: | |
webroot: ${{ github.workspace }}/test | |
execute: /update-provider.cfm | |
luceeVersion: ${{ env.luceeVersion }} | |
extensions: | |
extensionDir: |