aboutsummaryrefslogtreecommitdiff
path: root/.github/workflows/release.yml
blob: 01ce2468c3b5ec44014da99330f74bbd2d441bce (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
name: Release
on:
  workflow_dispatch:
    inputs:
      version:
        description: 'The version to prepare the release for'
        required: true
        

jobs:
  promote-release:
    runs-on: ubuntu-latest
    steps:
      - env:
          VERSION: ${{ github.event.inputs.version }}
        run: |
          echo Hello World
          echo Creating a build for version