Skip to content

Merge pull request #51 from 3scale-ops/feat/manticore-exporter #25

Merge pull request #51 from 3scale-ops/feat/manticore-exporter

Merge pull request #51 from 3scale-ops/feat/manticore-exporter #25

Workflow file for this run

name: release
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2
- uses: actions/cache@v2
with:
path: ./bin
key: ${{ runner.os }}-bin
- name: Build image
run: make docker-build
- name: Export release name
run: |
echo "NEW_RELEASE=$(make get-new-release)" >> $GITHUB_ENV
- name: Login to quay.io/3scale
if: ${{ env.NEW_RELEASE != '' }}
uses: docker/login-action@v1
with:
registry: quay.io
username: ${{ secrets.REGISTRY_USER }}
password: ${{ secrets.REGISTRY_PASSWORD }}
- name: Push new prometheus-exporter-operator image
if: ${{ env.NEW_RELEASE != '' }}
run: make docker-push
- name: Publish new bundle image in prometheus-exporter-operator catalog
if: ${{ env.NEW_RELEASE != '' }}
run: make bundle-publish
- name: Create a new draft-release in github
if: ${{ env.NEW_RELEASE != '' }}
uses: "marvinpinto/action-automatic-releases@latest"
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: "${{ env.NEW_RELEASE }}"
title: "${{ env.NEW_RELEASE }}"
draft: true