Skip to content

Commit

Permalink
ci: new workflow for v2 branch
Browse files Browse the repository at this point in the history
  • Loading branch information
pnicolli committed Jul 12, 2023
1 parent 5ac32be commit 2aaa817
Showing 1 changed file with 42 additions and 0 deletions.
42 changes: 42 additions & 0 deletions .github/workflows/v2.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: Docker build for latest main version
on:
push:
branches: [v2]

jobs:
build_main:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2

- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}

- name: Build and push Docker images
uses: docker/build-push-action@v3
with:
context: .
tags: redturtletech/io-comune-base:v2
pull: true
push: true
cache-from: type=registry,ref=redturtletech/io-comune-base:v2
cache-to: type=inline

- name: Deploy to rancher
uses: redturtle/[email protected]
with:
host: ${{ secrets.RANCHER_HOST }}
api-username: ${{ secrets.RANCHER_API_USERNAME }}
api-password: ${{ secrets.RANCHER_API_PASSWORD }}
cluster-id: ${{ secrets.RANCHER_CLUSTER_ID }}
project-id: ${{ secrets.RANCHER_PROJECT_ID }}
namespace: ${{ secrets.RANCHER_NAMESPACE }}
workload: ${{ secrets.RANCHER_WORKLOAD }}
image: redturtletech/io-comune-base:v2
slack-hook-url: ${{ secrets.RANCHER_SLACK_HOOK_URL }}

0 comments on commit 2aaa817

Please sign in to comment.