feat: update npm publishing workflow to set access level based on branch
All checks were successful
Publish to npm / publish (push) Successful in 23s

This commit is contained in:
Astrian Zheng 2025-02-20 11:25:28 +11:00
parent c55f5d0bfd
commit 0eb95f05ae
Signed by: Astrian
SSH Key Fingerprint: SHA256:rVnhx3DAKjujCwWE13aDl7uV6+9U1MvydLkNRXJrBiA

View File

@ -28,8 +28,10 @@ jobs:
run: |
if [ "${{ gitea.ref }}" == "refs/heads/main" ]; then
echo "PACKAGE_NAME=datenel-react" >> $GITEA_ENV
echo "ACCESS_LEVEL=public" >> $GITEA_ENV
elif [ "${{ gitea.ref }}" == "refs/heads/dev" ]; then
echo "PACKAGE_NAME=@astrian/datenel-react-dev" >> $GITEA_ENV
echo "ACCESS_LEVEL=restricted" >> $GITEA_ENV
fi
- name: Update package.json for dev releases