Skip to content

fix: actions deployment #69

fix: actions deployment

fix: actions deployment #69

Workflow file for this run

# Copyright 2020 ChainSafe Systems
# SPDX-License-Identifier: LGPL-3.0-only
name: Deploy Release
on:
push:
branches:
- 'fix/actions-deployment'
jobs:
release:
permissions: write-all
runs-on: ubuntu-latest
outputs:
release_created: ${{ steps.release.outputs.release_created }}
tag: ${{ steps.release.outputs.tag_name }}
steps:
- uses: GoogleCloudPlatform/[email protected]
id: release
with:
release-type: go
token: ${{secrets.GITHUB_TOKEN}}
deploy-services:
needs: release
uses: ChainSafe/nodewatch-api/.github/workflows/build-deploy-prod.yml@fix/actions-deployment
if: ${{ needs.release.outputs.release_created }}
with:
tag: ${{ needs.release.outputs.tag }}