Run by aihara-sama #1
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: Build | |
run-name: Run by ${{ github.actor }} | |
on: [push] | |
jobs: | |
Build: | |
runs-on: ubuntu-latest | |
steps: | |
- run: echo "Start Building by ${{ github.event_name }}" | |
- name: Some famous build provider | |
uses: actions/checkout@v4 | |
- run: echo "repo - ${{ github.repository }}" | |
- run: echo "branch - ${{ github.ref }}" | |
- name: List | |
run: | | |
ls ${{ github.workspace }} | |
- run: echo "job status - ${{ job.status }}" |