Skip to content

Commit

Permalink
Added Release file v2
Browse files Browse the repository at this point in the history
  • Loading branch information
harshau007 committed Apr 19, 2024
1 parent e2d6c2d commit c49a31f
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,15 +23,15 @@ jobs:
with:
fetch-depth: 0

- name: Building Calamares Tar file
- name: Building DevCraft Tar file
run: |
cd ..
touch calamares-${{ inputs.tag }}.tar.gz
tar -czf calamares-${{ inputs.tag }}.tar.gz calamares/
touch devcraft-${{ inputs.tag }}.tar.gz
tar -czf devcraft-${{ inputs.tag }}.tar.gz devcraft/
touch checksum
sha256sum calamares-${{ inputs.tag }}.tar.gz > checksum
mv checksum calamares/
mv calamares-${{ inputs.tag }}.tar.gz calamares/
sha256sum devcraft-${{ inputs.tag }}.tar.gz > checksum
mv checksum devcraft/
mv devcraft-${{ inputs.tag }}.tar.gz devcraft/
- name: Checking if release with date tag exist
run: |
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
gh release delete latest
- name: Release Tar File
run: |
gh release create 'v${{ inputs.tag }}' *tar.gz checksum --title "Calamares"
gh release create 'v${{ inputs.tag }}' *tar.gz checksum --title "DevCraft"
- name: Release Tar File with latest
run: |
gh release create latest *tar.gz checksum --latest --title "Calamares"
gh release create latest *tar.gz checksum --latest --title "DevCraft"

0 comments on commit c49a31f

Please sign in to comment.