7 Commits

Author SHA1 Message Date
eyedeekay
7afb74dc29 fix some paths I think? The alias thing is confusing 2025-05-09 23:41:21 -04:00
eyedeekay
942e8c2d81 use wildcard to get artifact 2025-05-09 20:07:25 -04:00
eyedeekay
21a817fe01 use wildcard to get artifact 2025-05-09 19:54:47 -04:00
eyedeekay
35d0604a38 use wildcard to get artifact 2025-05-09 19:50:13 -04:00
eyedeekay
a79a3f0290 use wildcard to get artifact 2025-05-09 19:45:26 -04:00
eyedeekay
f118698957 Merge branch 'main' of github.com:go-i2p/go-gitlooseleaf 2025-05-09 17:27:00 -04:00
eyedeekay
432d9fb280 fix artifact name 2025-05-09 17:26:28 -04:00
2 changed files with 12 additions and 10 deletions

View File

@@ -91,19 +91,20 @@ jobs:
shell: bash
run: |
cd forgejo-source
ARTIFACT_NAME="gitea-${{ runner.os }}"
ARTIFACT_NAME="forgejo-${{ runner.os }}"
ls -lah
if [ "${{ runner.os }}" = "Windows" ]; then
mv gitea.exe "${ARTIFACT_NAME}.exe"
mv -v gitea.exe "${ARTIFACT_NAME}.exe"
else
mv gitea "${ARTIFACT_NAME}"
mv -v gitea "${ARTIFACT_NAME}"
fi
- name: Upload Build Artifact
uses: actions/upload-artifact@v4
with:
name: gitea-${{ runner.os }}
name: forgejo-${{ runner.os }}
path: |
forgejo-source/gitea-${{ runner.os }}*
forgejo-source/forgejo-${{ runner.os }}*
retention-days: 1
release:

View File

@@ -57,19 +57,20 @@ jobs:
shell: bash
run: |
cd forgejo-source
ARTIFACT_NAME="gitea-${{ runner.os }}"
ARTIFACT_NAME="forgejo-${{ runner.os }}"
ls -lah
if [ "${{ runner.os }}" = "Windows" ]; then
mv gitea.exe "${ARTIFACT_NAME}.exe"
mv -v gitea.exe "${ARTIFACT_NAME}.exe"
else
mv gitea "${ARTIFACT_NAME}"
mv -v gitea "${ARTIFACT_NAME}"
fi
- name: Upload Build Artifact
uses: actions/upload-artifact@v4
with:
name: gitea-${{ runner.os }}
name: forgejo-${{ runner.os }}
path: |
forgejo-source/gitea-${{ runner.os }}*
forgejo-source/forgejo-${{ runner.os }}*
retention-days: 1
release: