Skip to content

Commit

Permalink
Release: Light releases are 'normal' release packages
Browse files Browse the repository at this point in the history
  • Loading branch information
christophe-lunarg committed Mar 5, 2024
1 parent 49942a6 commit ab2d7b4
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 50 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/make_light_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,23 +20,23 @@ jobs:
- name: Set env
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV

- name: Prepare layout
run: mv copying.txt glm
# - name: Prepare layout
# run: mv copying.txt glm

- name: Create zip archive
run: zip -r glm-${{ env.RELEASE_VERSION }}-light.zip glm
run: zip -r glm-${{ env.RELEASE_VERSION }}.zip .

- name: Create 7z archive
run: 7z a glm-${{ env.RELEASE_VERSION }}-light.7z glm
run: 7z a glm-${{ env.RELEASE_VERSION }}.7z .

- uses: actions/upload-artifact@v3
with:
name: glm-${{ env.RELEASE_VERSION }}-light
path: glm-${{ env.RELEASE_VERSION }}-light.*
name: glm-${{ env.RELEASE_VERSION }}
path: glm-${{ env.RELEASE_VERSION }}.*

- name: Add to Release
uses: softprops/action-gh-release@v1
with:
files: |
glm-${{ env.RELEASE_VERSION }}-light.zip
glm-${{ env.RELEASE_VERSION }}-light.7z
glm-${{ env.RELEASE_VERSION }}.zip
glm-${{ env.RELEASE_VERSION }}.7z
42 changes: 0 additions & 42 deletions .github/workflows/make_release.yml

This file was deleted.

0 comments on commit ab2d7b4

Please sign in to comment.