Please this time

This commit is contained in:
Yair Morgenstern 2021-01-19 22:11:02 +02:00 committed by GitHub
parent 9966a6a89d
commit d7218fdfa5
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -9,7 +9,6 @@ on:
branches: [ master ]
pull_request:
branches: [ master ]
release:
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
@ -25,12 +24,12 @@ jobs:
steps:
- name: Get tag
if: github.event_name == 'release'
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
id: tag
uses: dawidd6/action-get-tag@v1
- name: Use tag
if: github.event_name == 'release'
if: github.event_name == 'push' && contains(github.ref, 'refs/tags/')
run: echo ${{steps.tag.outputs.tag}}
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it