Publish #12
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
--- | |
name: "Publish" | |
on: | |
workflow_dispatch: | |
inputs: | |
version: | |
type: string | |
description: "Version String (Ex: '0.0.1')" | |
required: true | |
jobs: | |
publish: | |
runs-on: ubuntu-latest | |
env: | |
RELEASE_VERSION: ${{ inputs.version }} | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Docker Login | |
run: | | |
docker login quay.io -u ${{ secrets.QUAY_USERNAME }} -p "${{ secrets.QUAY_PASSWORD }}" | |
- name: Docker Push + Tag | |
run: | | |
make release | |
- name: Github Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
name: ${{ inputs.version }} | |
tag_name: ${{ inputs.version }} | |
files: | |
turbine-tenant-operator-*.yaml |