Skip to content

Merge remote-tracking branch 'origin/develop' #7

Merge remote-tracking branch 'origin/develop'

Merge remote-tracking branch 'origin/develop' #7

Workflow file for this run

name: Publish Release
on:
push:
tags:
- "v*"
jobs:
PublishRelease:
runs-on: ubuntu-latest
outputs:
status: ${{ steps.status.outputs.status }}
steps:
- name: PublishRelease
uses: marvinpinto/[email protected]
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
prerelease: false
- name: Set Job Status
id: status
run: echo "::set-output name=status::success"
Notify:
runs-on: ubuntu-latest
needs: [ PublishRelease ]
if: always()
steps:
- name: Notify slack fail
if: false == (needs.PublishRelease.outputs.status == 'success')
uses: voxmedia/[email protected]
env:
SLACK_BOT_TOKEN: ${{ secrets.SLACK_BOT_TOKEN }}
with:
channel: ccc-github
status: FAILED
color: danger