Skip to content

Commit

Permalink
Update pipeline.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
chadgoss authored Dec 21, 2021
1 parent e23383e commit 2b6ee42
Showing 1 changed file with 4 additions and 26 deletions.
30 changes: 4 additions & 26 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,26 +2,11 @@

name: bundle-workflow

# Controls when the action will run. Workflow runs when manually triggered using the UI
# or API.
on:
workflow_dispatch:
inputs:
name:
description: 'Manual input test: Reason for running this deployment?'
default: 'pipeline testing'
required: true
release:
types:
- created

pick_runner:
description: 'runner to use, dev or prod'
default: 'ubuntu-latest'
required: true

push:
branches:
- master

# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
build:
name: Create Release
Expand All @@ -36,13 +21,6 @@ jobs:
run: |
echo $RELEASE_VERSION
echo ${{ env.RELEASE_VERSION }}
- name: Create Release
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ env.RELEASE_VERSION }}
release_name: v1

0 comments on commit 2b6ee42

Please sign in to comment.