build(deps): bump tar and @cycjimmy/semantic-release-action #97
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: Logs | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
logs: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: log github | |
run: | | |
echo repository: ${{ github.repository }} | |
echo workspace: ${{ github.workspace }} | |
echo action: ${{ github.action }} | |
echo job: ${{ github.job }} | |
echo event_name: ${{ github.event_name }} | |
echo ref: ${{ github.ref }} | |
echo head_ref: ${{ github.head_ref }} | |
echo ref_type: ${{ github.ref_type }} | |
echo ref_name: ${{ github.ref_name }} | |