mirror of
https://github.com/stefanzweifel/git-auto-commit-action.git
synced 2024-11-06 02:08:05 +00:00
Remove continous-deployment.yml
This commit is contained in:
parent
c180c695f2
commit
3aae7bb63f
31
.github/workflows/continuous-deployment.yml
vendored
31
.github/workflows/continuous-deployment.yml
vendored
@ -1,31 +0,0 @@
|
|||||||
# https://help.github.com/en/categories/automating-your-workflow-with-github-actions
|
|
||||||
|
|
||||||
name: "Continuous Deployment"
|
|
||||||
|
|
||||||
on:
|
|
||||||
push:
|
|
||||||
tags:
|
|
||||||
- "**"
|
|
||||||
|
|
||||||
jobs:
|
|
||||||
release:
|
|
||||||
name: "Release"
|
|
||||||
|
|
||||||
runs-on: "ubuntu-latest"
|
|
||||||
|
|
||||||
steps:
|
|
||||||
- name: "Determine tag"
|
|
||||||
id: "determine-tag"
|
|
||||||
run: "echo \"::set-output name=tag::${GITHUB_REF#refs/tags/}\""
|
|
||||||
|
|
||||||
- name: "Create release"
|
|
||||||
uses: "actions/create-release@v1.0.0"
|
|
||||||
env:
|
|
||||||
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}"
|
|
||||||
with:
|
|
||||||
draft: false
|
|
||||||
prerelease: false
|
|
||||||
body: |
|
|
||||||
See [Changelog](https://github.com/stefanzweifel/git-auto-commit-action/blob/master/CHANGELOG.md) for details.
|
|
||||||
release_name: "${{ steps.determine-tag.outputs.tag }}"
|
|
||||||
tag_name: "${{ steps.determine-tag.outputs.tag }}"
|
|
Loading…
Reference in New Issue
Block a user