Skip to content

Commit

Permalink
Update blank.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
HamBP authored Dec 3, 2021
1 parent 99ac4fe commit 5d8c8f7
Showing 1 changed file with 15 additions and 7 deletions.
22 changes: 15 additions & 7 deletions .github/workflows/blank.yml
Original file line number Diff line number Diff line change
@@ -1,15 +1,23 @@
name: Create Tag

name: CD test
on:
push:
branches:
- master

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: Klemensas/action-autotag@stable
with:
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
- uses: actions/checkout@v2
- name: push tag
id: tag_version
uses: mathieudutour/[email protected]
with:
github_token: ${{ secret.GITHUB_TOKEN }}
- name: Create A GitHub release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.tag_version.outputs.new_tag }}
release_name: Release ${{ steps.tag_version.outputs.new_tag }}
body: ${{ steps.tag_version.outputs.changelog }}

0 comments on commit 5d8c8f7

Please sign in to comment.