revert workflow release
This commit is contained in:
parent
f990fc93d3
commit
dada2b6995
1 changed files with 0 additions and 27 deletions
27
.github/workflows/release_stable.yml
vendored
27
.github/workflows/release_stable.yml
vendored
|
@ -9,10 +9,6 @@ on:
|
||||||
description: 'rebuild'
|
description: 'rebuild'
|
||||||
type: boolean
|
type: boolean
|
||||||
required: true
|
required: true
|
||||||
force_release:
|
|
||||||
description: 'rebuild'
|
|
||||||
type: boolean
|
|
||||||
required: true
|
|
||||||
|
|
||||||
env:
|
env:
|
||||||
DOTCLEAR_IMAGE: docker-dotclear
|
DOTCLEAR_IMAGE: docker-dotclear
|
||||||
|
@ -59,29 +55,6 @@ jobs:
|
||||||
SUMMARY=$'Image ${{ env.DOCKER_NAMESPACE }}/${{ env.DOTCLEAR_IMAGE }}:${{ steps.dotclear.outputs.version }} found.'
|
SUMMARY=$'Image ${{ env.DOCKER_NAMESPACE }}/${{ env.DOTCLEAR_IMAGE }}:${{ steps.dotclear.outputs.version }} found.'
|
||||||
echo "$SUMMARY" >> $GITHUB_STEP_SUMMARY
|
echo "$SUMMARY" >> $GITHUB_STEP_SUMMARY
|
||||||
|
|
||||||
do_release:
|
|
||||||
needs: check_image
|
|
||||||
if: ((needs.check_image.outputs.exists == 'false') || (github.event.inputs.force_release == 'true'))
|
|
||||||
name: Create repository tag and release
|
|
||||||
runs-on: ubuntu-latest
|
|
||||||
permissions:
|
|
||||||
contents: write
|
|
||||||
steps:
|
|
||||||
- uses: actions/checkout@v3
|
|
||||||
- uses: ncipollo/release-action@v1
|
|
||||||
with:
|
|
||||||
name: Docker Dotclear ${{ needs.check_image.outputs.version }}
|
|
||||||
commit: master
|
|
||||||
tag: ${{ needs.check_image.outputs.version }}
|
|
||||||
body: Source for docker image of Dotclear ${{ needs.check_image.outputs.version }} stable
|
|
||||||
draft: false
|
|
||||||
prerelease: false
|
|
||||||
|
|
||||||
- name: summary
|
|
||||||
run: |
|
|
||||||
SUMMARY=$'Docker Dotclear ${{ steps.dotclear.outputs.version }} release created.'
|
|
||||||
echo "$SUMMARY" >> $GITHUB_STEP_SUMMARY
|
|
||||||
|
|
||||||
do_image:
|
do_image:
|
||||||
needs: check_image
|
needs: check_image
|
||||||
if: ((needs.check_image.outputs.exists == 'false') || (github.event.inputs.force_rebuild == 'true'))
|
if: ((needs.check_image.outputs.exists == 'false') || (github.event.inputs.force_rebuild == 'true'))
|
||||||
|
|
Loading…
Reference in a new issue