Add intermediate-next #41
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: Playing around with github action... | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
use-docker-file-action: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
os: [ubuntu-latest] | |
node-version: [20.x] | |
steps: | |
- name: running echo | |
run: | | |
echo 'Hello from github action...' | |
- name: checkout | |
uses: actions/checkout@v3 | |
- name: checking the folder content | |
run: | | |
ls | |
- name: checking the current directory | |
run: | | |
pwd | |
- name: run custom action.yml | |
# This is the folder path where action.yml is in | |
uses: ./github-actions | |
with: | |
message: ${{ secrets.MESSAGE }} |