Skip to content

Commit

Permalink
...
Browse files Browse the repository at this point in the history
  • Loading branch information
Glutamat42 committed Jan 16, 2024
1 parent 5d24780 commit 8bedc66
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,20 +35,20 @@ jobs:
- name: Create release archives
run: |
tar -czf /moodle-${{ env.PLUGIN_NAME }}-${{ github.ref_name }}.tgz *
zip -r /moodle-${{ env.PLUGIN_NAME }}-${{ github.ref_name }}.zip *
tar -czf /tmp/moodle-${{ env.PLUGIN_NAME }}-${{ github.ref_name }}.tgz *
zip -r /tmp/moodle-${{ env.PLUGIN_NAME }}-${{ github.ref_name }}.zip *
- name: Upload release archives
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: /moodle-${{ env.PLUGIN_NAME }}-${{ github.ref_name }}.zip
file: /tmp/moodle-${{ env.PLUGIN_NAME }}-${{ github.ref_name }}.zip
tag: ${{ github.ref_name }}
- name: Upload release archives
uses: svenstaro/upload-release-action@v2
with:
repo_token: ${{ secrets.GITHUB_TOKEN }}
file: /moodle-${{ env.PLUGIN_NAME }}-${{ github.ref_name }}.tgz
file: /tmp/moodle-${{ env.PLUGIN_NAME }}-${{ github.ref_name }}.tgz
tag: ${{ github.ref_name }}

- name: Bump Version in main
Expand Down

0 comments on commit 8bedc66

Please sign in to comment.