Skip to content

Commit

Permalink
Create get_tag.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
sbansla authored Jan 22, 2024
1 parent db32b58 commit 0f97fb6
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/get_tag.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Get Tag

on:
push:
branches:
- main

jobs:
get-latest-tag:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2

- name: Get latest tag
id: get-latest-tag
run: echo "::set-output name=tag::$(git describe --tags $(git rev-list --tags --max-count=1))"

your-other-job:
runs-on: ubuntu-latest

needs: get-latest-tag

steps:
- name: Use latest tag
run: echo "Latest tag is ${{ needs.get-latest-tag.outputs.tag }}"

0 comments on commit 0f97fb6

Please sign in to comment.