Search
 
SCRIPT & CODE EXAMPLE
 

CSHARP

github action get commit tag

on:
  push:
    tags:
      - 'v*.*.*'
jobs:
  test:
    runs-on: ubuntu-latest
    steps:
      - uses: actions/checkout@v2
      - name: Set env
        run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
      - name: Test
        run: |
          echo $RELEASE_VERSION
          echo ${{ env.RELEASE_VERSION }}
Comment

PREVIOUS NEXT
Code Example
Csharp :: c# escape characters 
Csharp :: c# datagridview header color 
Csharp :: c# ienumerable to list 
Csharp :: rigidbody velocity c# unity 
Csharp :: unity custom editor 
Csharp :: how to remove white spaces from string in c# 
Csharp :: asp.net textarea disable resize 
Csharp :: c# settings file 
Csharp :: gcd of list of number 
Csharp :: ffmpeg add audio to video at specific time 
Csharp :: how to read particular line of file in c# 
Csharp :: c# webclient post file 
Csharp :: linq query to check if record exists 
Csharp :: how to deserialize string array in c# 
Csharp :: datetime empty date 
Csharp :: c# change language version to 9.0 
Csharp :: Dyanmically create datatable in c# 
Csharp :: asp.net core api Self referencing loop detected for property 
Csharp :: vb.net add row to datagridview programmatically 
Csharp :: c# binary search 
Csharp :: rotate gameobject unity 
Csharp :: how to get a length of a string in c# 
Csharp :: excel isrlgood 
Csharp :: c# get classes which inherits 
Csharp :: c# max two values 
Csharp :: c# example code 
Csharp :: how to set the value of a textbox textmode=date asp.net c# 
Csharp :: linq foreach c# 
Csharp :: C# api get value from header 
Csharp :: convert object to iqueryable in c# 
ADD CONTENT
Topic
Content
Source link
Name
7+4 =