mirror of
https://github.com/g-truc/glm.git
synced 2024-11-10 04:31:47 +00:00
Merge pull request #1130 from eliemichel/master
Automatically add lightweight archives to releases #1130
This commit is contained in:
commit
2c74560914
42
.github/workflows/make_light_release.yml
vendored
Normal file
42
.github/workflows/make_light_release.yml
vendored
Normal file
@ -0,0 +1,42 @@
|
|||||||
|
# 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
|
||||||
|
|
||||||
|
- name: Check out repository code
|
||||||
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Set env
|
||||||
|
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV
|
||||||
|
|
||||||
|
- name: Prepare layout
|
||||||
|
run: mv copying.txt glm
|
||||||
|
|
||||||
|
- name: Create zip archive
|
||||||
|
run: zip -r glm-${{ env.RELEASE_VERSION }}-light.zip glm
|
||||||
|
|
||||||
|
- name: Create 7z archive
|
||||||
|
run: 7z a glm-${{ env.RELEASE_VERSION }}-light.7z glm
|
||||||
|
|
||||||
|
- uses: actions/upload-artifact@v3
|
||||||
|
with:
|
||||||
|
name: glm-${{ env.RELEASE_VERSION }}-light
|
||||||
|
path: glm-${{ env.RELEASE_VERSION }}-light.*
|
||||||
|
|
||||||
|
- name: Add to Release
|
||||||
|
uses: softprops/action-gh-release@v1
|
||||||
|
with:
|
||||||
|
files: |
|
||||||
|
glm-${{ env.RELEASE_VERSION }}-light.zip
|
||||||
|
glm-${{ env.RELEASE_VERSION }}-light.7z
|
Loading…
Reference in New Issue
Block a user