add publish workflow and update README
All checks were successful
Publish Release Package / publish (push) Successful in 33s
All checks were successful
Publish Release Package / publish (push) Successful in 33s
This commit is contained in:
47
.gitea/workflows/publish.yml
Normal file
47
.gitea/workflows/publish.yml
Normal file
@@ -0,0 +1,47 @@
|
|||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- "*.*.*"
|
||||||
|
|
||||||
|
name: Publish Release Package
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
publish:
|
||||||
|
env:
|
||||||
|
NODE_TLS_REJECT_UNAUTHORIZED: 0
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- name: 🛡️ 🔒 Add Siteworx CA Certificates
|
||||||
|
run: |
|
||||||
|
curl -Ls https://siteworxpro.com/hosted/Siteworx+Root+CA.pem -o /usr/local/share/ca-certificates/sw.crt
|
||||||
|
update-ca-certificates
|
||||||
|
|
||||||
|
- name: Checkout code
|
||||||
|
uses: actions/checkout@v2
|
||||||
|
|
||||||
|
- name: Zip files
|
||||||
|
id: zip_files
|
||||||
|
run: |
|
||||||
|
apt update && apt install -y zip
|
||||||
|
|
||||||
|
echo "Creating zip file"
|
||||||
|
zip -r release.zip . -x ".idea*" "*.git*" "*.github*" "*.gitea*" "node_modules/*" "dist/*" "coverage/*" "build/*" "logs/*" "tmp/*"
|
||||||
|
echo "Zip file created: release.zip"
|
||||||
|
|
||||||
|
- name: 📦 Publish Build Artifacts
|
||||||
|
uses: christopherhx/gitea-upload-artifact@v4
|
||||||
|
with:
|
||||||
|
name: release.zip
|
||||||
|
path: release.zip
|
||||||
|
retention-days: 1
|
||||||
|
|
||||||
|
- name: Upload release package
|
||||||
|
run: |
|
||||||
|
output=$(curl --user ${{ secrets.PACKAGE_PUBLISH_USER }}:${{ secrets.PACKAGE_PUBLISH_TOKEN }} \
|
||||||
|
--upload-file release.zip \
|
||||||
|
${{ gitea.server_url }}/api/packages/Siteworxpro/composer?version=${{ gitea.ref_name }})
|
||||||
|
if [ $? -ne 0 ]; then
|
||||||
|
echo "Error uploading release package"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
echo "Upload successful"
|
12
README.md
12
README.md
@@ -129,14 +129,4 @@ When setting the `$createGroup` argument to `false`, permissions `DescribeLogGro
|
|||||||
}
|
}
|
||||||
]
|
]
|
||||||
}
|
}
|
||||||
```
|
```
|
||||||
|
|
||||||
## Issues
|
|
||||||
Feel free to [report any issues](https://github.com/maxbanton/cwh/issues/new)
|
|
||||||
|
|
||||||
## Contributing
|
|
||||||
Please check [this document](https://github.com/maxbanton/cwh/blob/master/CONTRIBUTING.md)
|
|
||||||
|
|
||||||
___
|
|
||||||
|
|
||||||
Made in Ukraine 🇺🇦
|
|
Reference in New Issue
Block a user