choyoungwoo9 is deploying Production Server #4
Workflow file for this run
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: Production Server Backend/Frontend CD | |
run-name: ${{ github.actor }} is deploying Production Server | |
on: | |
release: | |
types: [published] | |
jobs: | |
get-release-notes: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
with: | |
ref: ${{ github.event.release.tag_name }} | |
- name: Get Release Notes | |
run: | | |
echo "Release Tag: ${{ github.event.release.tag_name }}" | |
echo "Release Name: ${{ github.event.release.name }}" | |
echo "Release Notes: ${{ github.event.release.body }}" |