45 lines
No EOL
1.1 KiB
YAML
45 lines
No EOL
1.1 KiB
YAML
# yaml-language-server: $schema=https://json.schemastore.org/github-workflow.json
|
|
name: Deploy
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
app:
|
|
required: false
|
|
type: string
|
|
env:
|
|
required: true
|
|
type: string
|
|
tag:
|
|
required: false
|
|
type: string
|
|
meta-tags:
|
|
required: false
|
|
type: string
|
|
secrets:
|
|
M8A_ORG_BOT_REPO_TOKEN:
|
|
required: true
|
|
|
|
concurrency:
|
|
cancel-in-progress: true
|
|
group: ${{ github.workflow }}-${{ github.event.ref }}
|
|
|
|
jobs:
|
|
deploy:
|
|
runs-on: ubuntu-latest
|
|
container:
|
|
image: devthefuture/act-runner:latest
|
|
steps:
|
|
- name: 🎡 Check out the Helm chart repository
|
|
uses: actions/checkout@v4.1.7
|
|
with:
|
|
repository: "${{ github.repository_owner }}/appsets"
|
|
token: ${{ secrets.M8A_ORG_BOT_REPO_TOKEN }}
|
|
ref: "main"
|
|
|
|
- name: 🚀 Upgrade image tag
|
|
uses: https://git.devthefuture.org/devthefuture/actions/uptag@v0.0.1
|
|
with:
|
|
app: ${{ inputs.app }}
|
|
env: ${{ inputs.env }}
|
|
tag: ${{ inputs.tag }}
|
|
meta-tags: ${{ inputs.meta-tags }} |