Skip to content

Commit

Permalink
Merge pull request #79 from rumspeed/scotrumery/issue78
Browse files Browse the repository at this point in the history
Create temp-workflow.yml
  • Loading branch information
scotrumery authored Jul 15, 2024
2 parents 96316df + 2dfc727 commit dd4b246
Showing 1 changed file with 19 additions and 0 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/temp-workflow.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Manual Workflow

on:
workflow_dispatch:

jobs:
log-repo-info:
runs-on: ubuntu-latest

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Log repository name and version
run: |
REPO_NAME=$(basename $GITHUB_REPOSITORY)
VERSION=$(git describe --tags --always)
echo "Repository Name: $REPO_NAME"
echo "Version: $VERSION"

0 comments on commit dd4b246

Please sign in to comment.