diff --git a/.gitea/workflows/build.yml b/.gitea/workflows/build.yml index 2adb0f4..4206591 100644 --- a/.gitea/workflows/build.yml +++ b/.gitea/workflows/build.yml @@ -12,27 +12,25 @@ jobs: ENDPOINT: git.legonzaur.fr steps: + - name: Checkout + uses: actions/checkout@v4 + with: + lfs: false + persist-credentials: false + - name: Get Meta id: meta run: | echo REPO_NAME=$(echo ${GITHUB_REPOSITORY} | awk -F"/" '{print $2}') >> $GITHUB_OUTPUT echo REPO_VERSION=$(git describe --tags --always | sed 's/^v//') >> $GITHUB_OUTPUT - - name: Checkout - uses: actions/checkout@v4 - with: - lfs: false - persist-credentials: false - # github-server-url: "http://192.168.3.100:3000" - # env: - # GIT_TRACE: 1 - # GIT_CURL_VERBOSE: 1 - name: setup private key shell: bash run: | echo "${{ secrets.RUNNER_SSH_PRIVATE_KEY }}" > ~/.ssh/id_ed25519 chmod 400 ~/.ssh/id_ed25519 echo "{{ secrets.INSTANCE_SSH_PUBLIC_KEY }} > ~/.ssh/known_hosts" + - name: git lfs pull shell: bash run: | @@ -43,7 +41,7 @@ jobs: - name: Login to DockerHub uses: docker/login-action@v2 with: - registry: git.legonzaur.fr + registry: ${{ env.ENDPOINT }} username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} @@ -57,5 +55,5 @@ jobs: "NUXT_PUBLIC_DISCORD_LOGIN_ENDPOINT=${{ secrets.NUXT_PUBLIC_DISCORD_LOGIN_ENDPOINT }}" push: true tags: | # replace it with your local IP and tags - git.legonzaur.fr/${{ env.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}:${{ steps.meta.outputs.REPO_VERSION }} - git.legonzaur.fr/${{ env.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}:${{ env.DOCKER_LATEST }} + ${{ env.ENDPOINT }}/${{ env.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}:${{ steps.meta.outputs.REPO_VERSION }} + ${{ env.ENDPOINT }}/${{ env.DOCKER_ORG }}/${{ steps.meta.outputs.REPO_NAME }}:${{ env.DOCKER_LATEST }}