Update #2
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: Update | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
description: 'Filament Version' | |
required: true | |
type: string | |
jobs: | |
update-filament: | |
runs-on: macos-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Download latest filament and generate library files | |
run: | | |
./release.sh -v ${{ inputs.version }} -t release | |
- name: Commit changes | |
uses: EndBug/add-and-commit@v9 | |
with: | |
default_author: github_actions | |
message: 'v${{ inputs.version }}' | |
tag: 'v${{ inputs.version }}' |