Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release: Light releases are 'normal' release packages #1272

Merged
merged 1 commit into from
Mar 5, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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.

Loading