2023-01-08 22:56:32 +00:00
|
|
|
# A workflow that creates a minimal archive with only the glm/ headers and copying.txt.
|
|
|
|
|
|
|
|
name: Make light release
|
|
|
|
|
|
|
|
on:
|
|
|
|
release:
|
|
|
|
types: [published]
|
|
|
|
|
|
|
|
jobs:
|
|
|
|
make_zip:
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
|
|
|
- name: Install dependencies
|
|
|
|
run: sudo apt-get update -y && sudo apt-get install -y zip p7zip
|
|
|
|
|
2023-01-08 23:04:03 +00:00
|
|
|
- name: Check out repository code
|
|
|
|
uses: actions/checkout@v3
|
|
|
|
|
2023-01-08 22:56:32 +00:00
|
|
|
- name: Prepare layout
|
|
|
|
run: mv copying.txt glm
|
|
|
|
|
|
|
|
- name: Create zip archive
|
2023-01-08 23:24:56 +00:00
|
|
|
run: zip -r glm-${{ github.ref }}-light.zip glm
|
2023-01-08 22:56:32 +00:00
|
|
|
|
|
|
|
- name: Create 7z archive
|
2023-01-08 23:24:56 +00:00
|
|
|
run: 7z a glm-${{ github.ref }}-light.7z glm
|
2023-01-08 22:56:32 +00:00
|
|
|
|
|
|
|
- uses: actions/upload-artifact@v3
|
|
|
|
with:
|
2023-01-08 23:24:56 +00:00
|
|
|
name: glm-${{ github.ref }}-light
|
|
|
|
path: glm-${{ github.ref }}-light.*
|
|
|
|
|
|
|
|
- name: Add to Release
|
|
|
|
uses: softprops/action-gh-release@v1
|
|
|
|
files: |
|
|
|
|
glm-${{ github.ref }}-light.zip
|
|
|
|
glm-${{ github.ref }}-light.7z
|