ci: change echo output #3
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: GitHub Actions Test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
base: | |
name: Base Test | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Test Local Action | |
id: base-action | |
uses: ./ | |
with: | |
message: 'Hello, World! This is a test.' | |
- name: Print Output | |
id: output | |
run: echo "${{ steps.base-action.outputs.resultMessage }}" |