Skip to content

Commit

Permalink
[ADD] Echo test
Browse files Browse the repository at this point in the history
  • Loading branch information
NikRimington committed Oct 1, 2024
1 parent f1a4cad commit 4afaf5d
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/echoTest.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Release Package

# This action will start when a correctly formatted tag is pushed (e.g. 0.1.0)

on:
push:
branches:
- workflow/tester
env:
mascot: Mona

jobs:
build:

runs-on: windows-latest

steps:

- name: Checkout repository
uses: actions/checkout@v3


- name: Show VERSION
run: echo $GITHUB_REF_NAME

- name: Show Verion
run: echo ${{github.ref_name}}

- run: echo 'Hi ${{ env.mascot }}' # Hi Mona
- run: echo 'Hi ${{ env.mascot }}' # Hi Octocat
env:
mascot: Octocat

0 comments on commit 4afaf5d

Please sign in to comment.