mirror of
https://github.com/ronitsinha/almia-randomizer.git
synced 2026-09-08 02:15:23 -05:00
removed tag generation :P
This commit is contained in:
12
.github/workflows/c-cpp.yml
vendored
12
.github/workflows/c-cpp.yml
vendored
@@ -14,20 +14,18 @@ jobs:
|
||||
runs-on: ubuntu-latest
|
||||
outputs:
|
||||
upload_url: ${{ steps.create_release.outputs.upload_url }}
|
||||
tag: ${{ steps.tag.outputs.tag }}
|
||||
steps:
|
||||
- name: 'Generate Tag'
|
||||
run: echo ::set-output name=tag::${GITHUB_REF#refs/tags/}
|
||||
if: startsWith(github.ref, 'refs/tags/v')
|
||||
id: tag
|
||||
- name: 'Create Release'
|
||||
id: create_release
|
||||
uses: actions/create-release@v1
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
tag_name: ${{ steps.tag.outputs.tag }}
|
||||
release_name: Release ${{ steps.tag.outputs.tag }}
|
||||
tag_name: ${{ github.ref }}
|
||||
release_name: Release ${{ github.ref }}
|
||||
draft: false
|
||||
prerelease: false
|
||||
|
||||
build-linux:
|
||||
runs-on: ubuntu-latest
|
||||
needs: release
|
||||
|
||||
Reference in New Issue
Block a user