diff --git a/.forgejo/workflows/playing-around.yaml b/.forgejo/workflows/playing-around.yaml index f8a41cf..64fc2a1 100644 --- a/.forgejo/workflows/playing-around.yaml +++ b/.forgejo/workflows/playing-around.yaml @@ -43,7 +43,11 @@ jobs: cd repo git checkout dist-${{ env.FORGEJO_REF_NAME }} || git checkout --orphan dist-${{ env.FORGEJO_REF_NAME }} git rm -rf . - git add ../dist + + # Copy dist files to repo directory + cp -r ../dist/* ./ + + git add . git commit -m "Update dist for ${{ env.FORGEJO_REF_NAME }}" git push origin dist-${{ env.FORGEJO_REF_NAME }} --force