Update ci
All checks were successful
CI / build-test (push) Successful in 1m59s

This commit is contained in:
Brock H Caldwell
2026-03-08 22:34:57 -05:00
parent 1097e4c313
commit edfb1b92cb

View File

@@ -7,9 +7,6 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Echo
run: echo "Ref ${{ gitea.SHA::5 }}"
- name: Checkout repo
uses: actions/checkout@v5
@@ -33,8 +30,14 @@ jobs:
- name: Compile assets
run: APP_ENV=build php bin/console asset-map:compile
- name: Create artifact
run: |
file="${{ gitea.REF_NAME }}.tar.gz"
touch $file
tar -czf $file --exclude=$file .
- name: Upload artifact
uses: actions/upload-artifact@v3
with:
name: artifact
path: ./
name: "${{ gitea.REF_NAME }}"
path: "${{ gitea.REF_NAME }}.tar.gz"