Update appVersion #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 appVersion | |
on: | |
workflow_dispatch: | |
inputs: | |
distinct_id: | |
chart: | |
required: true | |
description: Path to chart to update | |
appVersion: | |
required: true | |
description: The desired version | |
jobs: | |
update: | |
runs-on: ubuntu-latest | |
steps: | |
- name: echo distinct ID ${{ github.event.inputs.distinct_id }} | |
run: echo ${{ github.event.inputs.distinct_id }} | |
- name: echo actor | |
run: echo ${{ github.actor }} | |
- name: The chart ${{ github.event.inputs.chart }} will be updated to appVersion ${{ github.event.inputs.appVersion }} | |
run: echo The chart ${{ github.event.inputs.chart }} will be updated to appVersion ${{ github.event.inputs.appVersion }} | |
- name: update appVersion | |
run: echo WIP | |
- name: update version | |
run: echo WIP |