Skip to content

Commit

Permalink
fix: change the name of package to code runner
Browse files Browse the repository at this point in the history
  • Loading branch information
Rishabh672003 committed Jan 9, 2024
1 parent 3e48ff1 commit 9c73417
Show file tree
Hide file tree
Showing 2 changed files 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 @@ -24,15 +24,15 @@ jobs:
- name: Set current date as environment variable
run: echo "DATE=`date +'%Y.%m.%d'`" >>$GITHUB_ENV

- name: Building TCET Linux Multilang compiler Tar file
- name: Building TCET Linux Code Runner Tar file
run: |
cd ..
touch tcet-linux-multilang-compiler.tar.gz
tar -czf tcet-linux-multilang-compiler.tar.gz tcet-linux-multilang-compiler/
touch tcet-linux-code-runner.tar.gz
tar -czf tcet-linux-code-runner.tar.gz tcet-linux-code-runner/
touch checksum
sha256sum tcet-linux-multilang-compiler.tar.gz > checksum
mv checksum tcet-linux-multilang-compiler/
mv tcet-linux-multilang-compiler.tar.gz tcet-linux-multilang-compiler/
sha256sum tcet-linux-code-runner.tar.gz > checksum
mv checksum tcet-linux-code-runner/
mv tcet-linux-code-runner.tar.gz tcet-linux-code-runner/
- name: Checking if release with date tag exist
run: |
Expand Down Expand Up @@ -63,10 +63,10 @@ jobs:
gh release delete latest
- name: Release Tar File
run: |
gh release create ${{ env.DATE }} *tar.gz checksum --title "Tcet-Linux-Multilang-Compiler"
gh release create ${{ env.DATE }} *tar.gz checksum --title "Tcet-Linux-Code-Runner"
- name: Release Tar File with latest
run: |
gh release create latest *tar.gz checksum --latest --title "Tcet-Linux-Multilang-Compiler"
gh release create latest *tar.gz checksum --latest --title "Tcet-Linux-Code-Runner"
- name: Triggered PKGBUILD Action
run: |
curl -L \
Expand Down
File renamed without changes.

0 comments on commit 9c73417

Please sign in to comment.