Skip to content

Commit

Permalink
added environment (#35)
Browse files Browse the repository at this point in the history
  • Loading branch information
yarnabrina authored Dec 21, 2023
1 parent c077c06 commit 66c79bf
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,13 +1,20 @@
name: release-workflow-name
run-name: release workflow run name
on: workflow_dispatch
on:
workflow_dispatch:
inputs:
github-environment-identifier:
description: name of protected Github environment
required: true
type: environment
defaults:
run:
shell: bash
jobs:
release-job-identifier:
name: release job name
runs-on: ubuntu-latest
environment: ${{ inputs.github-environment-identifier }}
steps:
- name: checkout commit
uses: actions/checkout@v4
Expand Down

0 comments on commit 66c79bf

Please sign in to comment.