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 7687457 commit c90dbf1
Show file tree
Hide file tree
Showing 2 changed files with 69 additions and 27 deletions.
28 changes: 1 addition & 27 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,32 +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: docker build --build-arg VERSION=$(git describe --tags --always) --build-arg BUILDTIME="$(date -R)" . -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
68 changes: 68 additions & 0 deletions .github/workflows/cd.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,68 @@
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 /root/.ssh
echo "${{ secrets.STAGE_SSH_KEY }}" > /root/.ssh/id_rsa
chmod 600 /root/.ssh/id_rsa
ssh-keyscan -H ctf01d.ru >> /root/.ssh/known_hosts
- name: Deploy Docker Compose to Staging
run: |
scp build/docker-compose.staging.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 pull && docker compose stop && docker compose up -d"
environment:
name: staging
url: http://staging.example.com

0 comments on commit c90dbf1

Please sign in to comment.