Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

github actions update #1655

Merged
merged 2 commits into from
Nov 10, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 7 additions & 0 deletions .github/dependabot.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
version: 2
updates:
- package-ecosystem: 'github-actions'
directory: '/'
schedule:
# Check for updates to GitHub Actions every month
interval: 'monthly'
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,5 @@
name: Release
run-name: Releasing ${{ github.event.release.tag_name }}

on:
workflow_dispatch:
Expand Down Expand Up @@ -150,7 +151,7 @@ jobs:
working-directory: manifests/overlays/development
run: |
kustomize edit set image ghcr.io/podkrepi-bg/frontend=ghcr.io/podkrepi-bg/frontend:$VERSION
kustomize edit set annotation app.komodor.com/app.ref:$GITHUB_SHA
kustomize edit set annotation app.komodor.com/app.ref:$GITHUB_SHA

- name: Set kubeconfig
run: echo ${{ secrets.K8S_DEV_CONFIG }} | base64 -d > config.yaml
Expand Down Expand Up @@ -202,7 +203,7 @@ jobs:
working-directory: manifests/overlays/production
run: |
kustomize edit set image ghcr.io/podkrepi-bg/frontend=ghcr.io/podkrepi-bg/frontend:$VERSION
kustomize edit set annotation app.komodor.com/app.ref:$GITHUB_SHA
kustomize edit set annotation app.komodor.com/app.ref:$GITHUB_SHA

- name: Set kubeconfig
run: echo ${{ secrets.K8S_CONFIG }} | base64 -d > config.yaml
Expand Down
Loading