Skip to content

Commit

Permalink
ci(deps): 🚀 add delivery by button
Browse files Browse the repository at this point in the history
  • Loading branch information
IgorPolyakov committed Sep 18, 2024
1 parent cd48e75 commit f34df55
Show file tree
Hide file tree
Showing 2 changed files with 70 additions and 30 deletions.
31 changes: 1 addition & 30 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: CI/CD
name: CI

on:
push:
Expand All @@ -9,35 +9,6 @@ on:
- main

jobs:
build:
name: Build and Push to GHCR
runs-on: ubuntu-latest

needs: test
steps:
- name: Check out code
uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.23'

- name: Build Docker Image
run: |
git fetch --unshallow --tags
BUILDTIME=$(date -R)
docker build --build-arg VERSION=$(git describe --tags --always) --build-arg BUILDTIME='$BUILDTIME' . -f build/Dockerfile -t ghcr.io/${{ github.repository }}:latest
- name: Log in to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Push Docker Image
run: docker push ghcr.io/${{ github.repository }}:latest
check-dependencies:
name: Check dependencies with nancy
runs-on: ubuntu-latest
Expand Down
69 changes: 69 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
name: CD

on:
push:
# branches:
# - main
pull_request:
# branches:
# - main
workflow_dispatch: # Позволяет запустить workflow вручную через интерфейс GitHub

jobs:
build:
name: Build and Push to GHCR
runs-on: ubuntu-latest

# needs: test
steps:
- name: Check out code
uses: actions/checkout@v2

- name: Set up Go
uses: actions/setup-go@v2
with:
go-version: '1.23'

- name: Build Docker Image
run: |
git fetch --unshallow --tags
BUILDTIME=$(date -R)
docker build --build-arg VERSION=$(git describe --tags --always) --build-arg BUILDTIME='$BUILDTIME' . -f build/Dockerfile -t ghcr.io/${{ github.repository }}:latest
- name: Log in to GitHub Container Registry
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- name: Push Docker Image
run: docker push ghcr.io/${{ github.repository }}:latest

deploy:
name: Deploy to Staging
runs-on: ubuntu-latest
needs: build
# if: github.event_name == 'workflow_dispatch'
steps:
- name: Install SSH and other dependencies
run: |
sudo apt-get update
sudo apt-get install -y openssh-client
- name: Set up SSH
run: |
mkdir -p ~/.ssh
echo "${{ secrets.STAGE_SSH_KEY }}" > ~/.ssh/id_rsa
chmod 600 ~/.ssh/id_rsa
ssh-keyscan -H ctf01d.ru >> ~/.ssh/known_hosts
- name: Deploy Docker Compose to Staging
run: |
scp build/docker-compose.staging.yml root@ctf01d.ru:/root/ctf01d-training-platform/build
scp build/docker-compose.yml root@ctf01d.ru:/root/ctf01d-training-platform/build
ssh root@ctf01d.ru "docker login ghcr.io -u '${{ secrets.GHCR_USERNAME }}' -p '${{ secrets.GHCR_TOKEN }}' && docker compose -f docker-compose.yml -f docker-compose.stage.yml pull && docker compose -f docker-compose.yml -f docker-compose.stage.yml stop && docker compose -f docker-compose.yml -f docker-compose.stage.yml up -d"
environment:
name: staging
url: http://staging.example.com

0 comments on commit f34df55

Please sign in to comment.