Skip to content

Fix bug where user is unable to update public domain due to general s… #23

Fix bug where user is unable to update public domain due to general s…

Fix bug where user is unable to update public domain due to general s… #23

name: Cloudness Release
on:
push:
tags:
- "v*.*.*"
workflow_dispatch:
env:
REGISTRY: ghcr.io
# github.repository as <account>/<repo>
IMAGE_NAME: ${{ github.repository }}
jobs:
build-cloudness-app:
name: Cloudness App
permissions:
contents: read
packages: write
uses: ./.github/workflows/_build-app.yml
with:
enable-cache: true
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
build-cloudness-helper:
name: Helper Plugin
permissions:
contents: read
packages: write
uses: ./.github/workflows/_build-helper.yml
with:
enable-cache: true
secrets:
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_TOKEN }}
upload-scripts:
name: Upload Scripts
needs: [build-cloudness-app, build-cloudness-helper]
permissions:
contents: read
uses: ./.github/workflows/_upload-scripts.yml
secrets:
SCRIPTS_BUCKET_ACCOUNT_ID: ${{ secrets.SCRIPTS_BUCKET_ACCOUNT_ID }}
SCRIPTS_BUCKET_ACCESS_KEY_ID: ${{ secrets.SCRIPTS_BUCKET_ACCESS_KEY_ID }}
SCRIPTS_BUCKET_SECRET_ACCESS_KEY: ${{ secrets.SCRIPTS_BUCKET_SECRET_ACCESS_KEY }}
SCRIPTS_BUCKET_NAME: ${{ secrets.SCRIPTS_BUCKET_NAME }}