glm/.github/workflows/make_light_release.yml

43 lines
1.1 KiB
YAML
Raw Normal View History

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
2024-05-31 07:52:03 +00:00
uses: actions/checkout@v4
2023-01-08 23:04:03 +00:00
2023-01-08 23:29:46 +00:00
- name: Set env
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
# - name: Prepare layout
# run: mv copying.txt glm
2023-01-08 22:56:32 +00:00
- name: Create zip archive
run: zip -r glm-${{ env.RELEASE_VERSION }}.zip .
2023-01-08 22:56:32 +00:00
- name: Create 7z archive
run: 7z a glm-${{ env.RELEASE_VERSION }}.7z .
2023-01-08 22:56:32 +00:00
2024-05-31 07:52:03 +00:00
- uses: actions/upload-artifact@v4
2023-01-08 22:56:32 +00:00
with:
name: glm-${{ env.RELEASE_VERSION }}
path: glm-${{ env.RELEASE_VERSION }}.*
2023-01-08 23:24:56 +00:00
- name: Add to Release
2024-05-31 07:52:03 +00:00
uses: softprops/action-gh-release@v2
2023-01-08 23:26:16 +00:00
with:
2023-01-08 23:24:56 +00:00
files: |
glm-${{ env.RELEASE_VERSION }}.zip
glm-${{ env.RELEASE_VERSION }}.7z