Skip to content

wip: just removing mongo for the moment and linked release #13

wip: just removing mongo for the moment and linked release

wip: just removing mongo for the moment and linked release #13

Workflow file for this run

name: Release
on:
workflow_run:
workflows: ["Docker build and push"]
tags: [ 'v*.*.*' ]
types:
- completed
push:
tags: [ 'v*.*.*' ]
env:
IMAGE_NAME: ${{ github.repository }}
jobs:
build:
environment: deployment # this gets the secrets for deployments
runs-on: ubuntu-latest
permissions:
contents: write
packages: write
# This is used to complete the identity challenge
# with sigstore/fulcio when running outside of PRs.
id-token: write
steps:
- name: Checkout repository
uses: actions/checkout@v3
# ################################
# create release and push assets
# ################################
- name: Release to github with Notes
uses: softprops/action-gh-release@v1
if: startsWith(github.ref, 'refs/tags/')
with:
draft: false
generate_release_notes: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}