Fix bug where user is unable to update public domain due to general s… #23
Workflow file for this run
This file contains hidden or 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: 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 }} |