Skip to content

Commit

Permalink
HEAT-447 runner redeployment (#7)
Browse files Browse the repository at this point in the history
* redeploy runners to 2.320.0 to see if Renovate picks it up

* add automated slack message

* runner redeployment bits

* run a deployment ever
  • Loading branch information
james-jdgtl authored Dec 9, 2024
1 parent a57a4a8 commit acab455
Show file tree
Hide file tree
Showing 3 changed files with 31 additions and 66 deletions.
65 changes: 0 additions & 65 deletions .github/workflows/bootstrap-actions.yml

This file was deleted.

2 changes: 1 addition & 1 deletion .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Pipeline
name: Build -> Deploy pipeline

on:
push:
Expand Down
30 changes: 30 additions & 0 deletions .github/workflows/scheduled_deployment.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: Scheduled deployment

on:
schedule:
- cron: "10 16,04 * * *" # Every 12 hours

workflow_dispatch:

jobs:
build:
name: Build
uses: ./.github/workflows/build.yml
with:
push: true
secrets: inherit

# Only need to deploy to production nowadays
deploy_to_prod:
name: Deploy to prod
uses: ./.github/workflows/deploy.yml
needs:
- build
with:
environment: production
version: ${{ needs.build.outputs.version }}
secrets: inherit
permissions:
contents: write
deployments: write

0 comments on commit acab455

Please sign in to comment.