Skip to content

chore: env vars instead text #2

chore: env vars instead text

chore: env vars instead text #2

name: Build Docker Images
on:
push:
branches:
- main
jobs:
trigger-build:
uses: ${{ github.repository_owner }}/workflows/.github/workflows/kaniko-build.yaml@main

Check failure on line 11 in .github/workflows/docker-builds.yaml

View workflow run for this annotation

GitHub Actions / .github/workflows/docker-builds.yaml

Invalid workflow file

invalid value workflow reference: owner name must be a valid repository owner name
with:
image-name: ${{ github.repository }}/redis
secrets:
personal_access_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
trigger-cleanup:
uses: ${{ github.repository_owner }}/workflows/.github/workflows/clean-registry.yaml@main
with:
repository: redis
package: redis/redis
keep_n_tagged: 2
dry_run: true
secrets:
personal_access_token: ${{ secrets.PERSONAL_ACCESS_TOKEN }}
deploy:
needs: [trigger-cleanup, trigger-build]
runs-on: ubuntu-latest
steps:
- name: Deploy to environment
run: |
echo "Deploying application"