fix deploy
Some checks failed
default / build-and-deploy (push) Failing after 2s

This commit is contained in:
Pavel 2025-03-30 17:37:23 +03:00
parent 781f30207d
commit 67cc9d0463

View file

@ -11,30 +11,19 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Login to Docker Registry
uses: docker/login-action@v3
container:
image: docker:dind
options: --privileged
with:
registry: git.neur0tx.site
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v6
container:
image: docker:dind
options: --privileged
with:
context: .
push: true
tags: git.neur0tx.site/${{ github.repository_owner }}/${{ github.repository_name }}:latest
run: |
echo "${{ secrets.GITHUB_TOKEN }}" | docker login git.neur0tx.site -u "${{ github.actor }}" --password-stdin
docker build -t git.neur0tx.site/${{ github.repository_owner }}/${{ github.repository_name }}:latest .
docker push git.neur0tx.site/${{ github.repository_owner }}/${{ github.repository_name }}:latest
- name: Deploy
if: ${{ success() }}
container: alpine:latest
run: |
apt-get install -y --no-install-recommends curl
curl -H "${{ secrets.DEPLOYER_AUTH }}" ${{ secrets.DEPLOYER_URL }}
container: alpine:latest
apk add --no-cache curl
curl -H "${{ secrets.DEPLOYER_AUTH }}" ${{ secrets.DEPLOYER_URL }}