Skip to content

feat: atualiza as configurações de k8s para deploy na OCI #92

feat: atualiza as configurações de k8s para deploy na OCI

feat: atualiza as configurações de k8s para deploy na OCI #92

Workflow file for this run

name: Release
# Configures this workflow to run every time a change is pushed to the branch called `main`.
on:
push:
branches: ['main']
tags-ignore: ['*']
# Defines two custom environment variables for the workflow. These are used for the Container registry domain, and a name for the Docker image that this workflow builds.
env:
REGISTRY: ghcr.io
IMAGE_NAME: ${{ github.repository }}
permissions:
contents: write
pull-requests: write
# There is a single job in this workflow. It's configured to run on the latest available version of Ubuntu.
jobs:
release-please:
name: Release
runs-on: ubuntu-latest
steps:
- uses: googleapis/release-please-action@v4
with:
token: ${{ secrets.RELEASE_GITHUB_TOKEN }}