Skip to content

Commit

Permalink
add the workflow that will output the release name
Browse files Browse the repository at this point in the history
  • Loading branch information
bquan0 committed Aug 30, 2023
1 parent 81a7de7 commit e2430dd
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions .github/workflows/releaseTest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
name: release-test

on:
workflow_dispatch:
pull_request:
push:
release:

jobs:
echo-variable:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: See what github.ref is on release
run: echo ${{ github.ref }}

0 comments on commit e2430dd

Please sign in to comment.