Skip to content
This repository has been archived by the owner on Aug 6, 2024. It is now read-only.

Commit

Permalink
chore: change .yaml to 2 spaces
Browse files Browse the repository at this point in the history
  • Loading branch information
koen1711 committed Apr 15, 2024
1 parent ae4eaae commit f906a0c
Show file tree
Hide file tree
Showing 2 changed files with 58 additions and 54 deletions.
4 changes: 4 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,3 +11,7 @@ trim_trailing_whitespace = true
[*.md]
max_line_length = off
trim_trailing_whitespace = false

[*.yaml]
indent_size = 2

108 changes: 54 additions & 54 deletions .github/workflows/docker.yaml
Original file line number Diff line number Diff line change
@@ -1,59 +1,59 @@
name: Docker

on:
push:
tags:
- v*
branches:
- main
workflow_dispatch: {}
push:
tags:
- v*
branches:
- main
workflow_dispatch: {}

jobs:
push:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Docker Login
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push PROD Docker image
if: github.ref_type == 'tag'
uses: docker/build-push-action@v5
with:
file: Dockerfile
context: .
push: true
tags: ghcr.io/leaphy-robotics/leaphy-webbased/leaphy-webbased:prod

- name: Build and push TEST Docker image
if: github.ref_type == 'branch'
uses: docker/build-push-action@v5
with:
file: Dockerfile
context: .
push: true
tags: ghcr.io/leaphy-robotics/leaphy-webbased/leaphy-webbased:main

- name: Redeploy TEST
if: github.ref_type == 'branch'
run: |
curl https://admin.leaphyeasybloqs.com/hooks/update-docker-image?stack=leaphy-webbased-test -H "X-Token: ${{ secrets.WEBHOOK_TOKEN }}"
- name: Redeploy PROD
if: github.ref_type == 'tag'
run: |
curl https://admin.leaphyeasybloqs.com/hooks/update-docker-image?stack=leaphy-webbased -H "X-Token: ${{ secrets.WEBHOOK_TOKEN }}"
- name: Clean up old images
uses: actions/delete-package-versions@v5
with:
package-name: "leaphy-webbased/leaphy-webbased"
package-type: "container"
min-versions-to-keep: 5
delete-only-untagged-versions: "true"
push:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v4

- name: Docker Login
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Build and push PROD Docker image
if: github.ref_type == 'tag'
uses: docker/build-push-action@v5
with:
file: Dockerfile
context: .
push: true
tags: ghcr.io/leaphy-robotics/leaphy-webbased/leaphy-webbased:prod

- name: Build and push TEST Docker image
if: github.ref_type == 'branch'
uses: docker/build-push-action@v5
with:
file: Dockerfile
context: .
push: true
tags: ghcr.io/leaphy-robotics/leaphy-webbased/leaphy-webbased:main

- name: Redeploy TEST
if: github.ref_type == 'branch'
run: |
curl https://admin.leaphyeasybloqs.com/hooks/update-docker-image?stack=leaphy-webbased-test -H "X-Token: ${{ secrets.WEBHOOK_TOKEN }}"
- name: Redeploy PROD
if: github.ref_type == 'tag'
run: |
curl https://admin.leaphyeasybloqs.com/hooks/update-docker-image?stack=leaphy-webbased -H "X-Token: ${{ secrets.WEBHOOK_TOKEN }}"
- name: Clean up old images
uses: actions/delete-package-versions@v5
with:
package-name: "leaphy-webbased/leaphy-webbased"
package-type: "container"
min-versions-to-keep: 5
delete-only-untagged-versions: "true"

0 comments on commit f906a0c

Please sign in to comment.