Compare commits

...

5 Commits

2 changed files with 6 additions and 3 deletions

View File

@ -28,4 +28,4 @@ jobs:
- uses: ./
with:
ssh_private_key: ${{ secrets.SSH_PRIVATE_KEY }}
target_repo_url: ${{ secrets.TARGET_REPO_URL }}
target_repo_url: ${{ secrets.TARGET_GITEA_REPO_URL }}

View File

@ -1,4 +1,4 @@
FROM alpine
FROM alpine:3.10
RUN apk update && apk upgrade && \
apk add --no-cache git openssh git-lfs
@ -6,6 +6,9 @@ RUN apk update && apk upgrade && \
RUN git lfs install
COPY mirror.sh /mirror.sh
COPY setup-ssh.sh /setup.sh
COPY setup.sh /setup.sh
RUN chmod +x /mirror.sh
RUN chmod +x /setup.sh
ENTRYPOINT ["/mirror.sh"]