ci(basic): fix permissions sur executable
All checks were successful
/ build (push) Successful in 1m43s
/ help (push) Successful in 9s

This commit is contained in:
Victor Lacasse-Beaudoin 2025-07-11 20:32:52 -04:00
parent 4725964bd2
commit e94ac84394

View file

@ -13,7 +13,6 @@ jobs:
with: with:
go-version: '1.24.5' go-version: '1.24.5'
- run: go build -a -o agecem-org ./cmd/agecemorg/ - run: go build -a -o agecem-org ./cmd/agecemorg/
- run: chmod +x agecem-org
- uses: actions/upload-artifact@v3 - uses: actions/upload-artifact@v3
with: with:
name: executable name: executable
@ -25,5 +24,6 @@ jobs:
- uses: actions/download-artifact@v3 - uses: actions/download-artifact@v3
with: with:
name: executable name: executable
- run: chmod +x agecem-org
- run: mv agecem-org /usr/bin/agecem-org - run: mv agecem-org /usr/bin/agecem-org
- run: agecem-org help - run: agecem-org help