Update .forgejo/workflows/package-check.yml

This commit is contained in:
melody 2025-07-07 01:18:15 +02:00
commit 0b90370660

View file

@ -20,9 +20,8 @@ jobs:
- name: Install dependencies
shell: sh
run: |
apk add --no-cache git bash && \
git clone https://github.com/monero-project/monero && \
cd monero
apk add --no-cache git bash
git clone https://github.com/monero-project/monero
- name: Start Docker daemon
run: |
@ -36,6 +35,7 @@ jobs:
- name: Build and push Docker image
run: |
cd monero
docker build -t $DOCKER_REGISTRY/$REGISTRY_USER/docker-$PACKAGE:latest .
echo "${{ secrets.DOCKER_PASSWORD }}" | docker login $DOCKER_REGISTRY -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin
docker push $DOCKER_REGISTRY/$REGISTRY_USER/docker-$PACKAGE:latest