Add delivery by button #14
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
cat ~/.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 | |
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 |