Skip to content

Commit

Permalink
print tag
Browse files Browse the repository at this point in the history
  • Loading branch information
Petar Cvitanović committed Dec 12, 2023
1 parent 6ee2534 commit 1c8726b
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Cyclops-CI

on:
push:
tags:
- '*'

permissions:
contents: write

jobs:
controller:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Print tag
run: |
TAG=$(git describe --tags --abbrev=0)
echo "The tag is $TAG"
UI:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Print tag
run: |
TAG=$(git describe --tags --abbrev=0)
echo "The tag is $TAG"

0 comments on commit 1c8726b

Please sign in to comment.