use actions again
Some checks failed
default / build-and-deploy (push) Failing after 53s

This commit is contained in:
Pavel 2025-03-30 18:32:19 +03:00
parent ee2b6b522c
commit 440eaf8853

View file

@ -15,10 +15,7 @@ jobs:
- name: Set Up Node
run: apk add --no-cache nodejs
- name: Checkout repository
uses: actions/checkout@v4
- name: Build and push Docker image
- name: Start Docker
run: |
dockerd-entrypoint.sh &
@ -27,13 +24,22 @@ jobs:
sleep 1
done
REPO_LOWERCASE=$(echo "${{ env.GITHUB_REPOSITORY }}" | tr '[:upper:]' '[:lower:]')
IMAGE="git.neur0tx.site/$REPO_LOWERCASE:latest"
echo "IMAGE=$IMAGE" >> $GITHUB_ENV
- name: Checkout repository
uses: actions/checkout@v4
echo "${{ secrets.GITHUB_TOKEN }}" | docker login git.neur0tx.site -u "${{ github.actor }}" --password-stdin
docker build -t $IMAGE .
docker push $IMAGE
- name: Login to Docker Registry
uses: docker/login-action@v3
with:
registry: git.neur0tx.site
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: git.neur0tx.site/neur0toxine/vegapokerbot:latest
- name: Deploy
if: ${{ success() }}