Skip to content

Commit

Permalink
Make the stats more accessible
Browse files Browse the repository at this point in the history
  • Loading branch information
AbandonedCart committed Mar 29, 2024
1 parent 9e7d0a7 commit 78c05a7
Show file tree
Hide file tree
Showing 2 changed files with 36 additions and 21 deletions.
22 changes: 14 additions & 8 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,16 +54,22 @@ jobs:

- name: Generate md5
if: github.event_name != 'pull_request'
run: md5sum intro-skipper-${{ env.GIT_HASH }}.zip > intro-skipper-${{ env.GIT_HASH }}.zip.md5
run: |
md5sum intro-skipper-${{ env.GIT_HASH }}.zip > intro-skipper-${{ env.GIT_HASH }}.md5
checksum="$(awk '{print $1}' intro-skipper-${{ env.GIT_HASH }}.md5)"
echo "CHECKSUM=$checksum" >> $GITHUB_ENV
- name: Publish prerelease
uses: 8bitDream/action-github-releases@v1.0.0
- name: Publish Release
uses: softprops/action-gh-release@v2.0.4
if: github.event_name != 'pull_request'
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: preview
prerelease: true
title: intro-skipper-${{ env.GIT_HASH }}
tag_name: preview
name: intro-skipper-${{ env.GIT_HASH }}
body: |
checksum: ${{ env.CHECKSUM }}
files: |
intro-skipper-${{ env.GIT_HASH }}.zip
intro-skipper-${{ env.GIT_HASH }}.zip.md5
draft: false
prerelease: true
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
35 changes: 22 additions & 13 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -45,22 +45,31 @@ jobs:
with:
files: |
ConfusedPolarBear.Plugin.IntroSkipper/bin/Debug/net6.0/ConfusedPolarBear.Plugin.IntroSkipper.dll
dest: intro-skipper-v${{ github.event.inputs.version }}.zip
dest: intro-skipper-v${{ github.event.inputs.version }}.zip

- name: Generate md5
- name: Generate manifest keys
run: |
md5sum intro-skipper-v${{ github.event.inputs.version }}.zip > intro-skipper-v${{ github.event.inputs.version }}.zip.md5
echo "sourceUrl: https://github.com/${{ github.repository }}/releases/download/v${{ github.event.inputs.version }}/intro-skipper-v${{ github.event.inputs.version }}.zip"
echo "checksum: $(awk '{print $1}' intro-skipper-v${{ github.event.inputs.version }}.zip.md5)"
echo "timestamp: $(date +%FT%TZ)"
sourceUrl="https://github.com/${{ github.repository }}/releases/download/v${{ github.event.inputs.version }}/intro-skipper-v${{ github.event.inputs.version }}.zip"
echo "SOURCE_URL=$sourceUrl" >> $GITHUB_ENV
md5sum intro-skipper-v${{ github.event.inputs.version }}.zip > intro-skipper-v${{ github.event.inputs.version }}.md5
checksum="$(awk '{print $1}' intro-skipper-v${{ github.event.inputs.version }}.md5)"
echo "CHECKSUM=$checksum" >> $GITHUB_ENV
timestamp="$(date +%FT%TZ)"
echo "TIMESTAMP=$timestamp" >> $GITHUB_ENV
- name: Publish release
uses: 8bitDream/action-github-releases@v1.0.0
- name: Publish Release
uses: softprops/action-gh-release@v2.0.4
with:
repo_token: "${{ secrets.GITHUB_TOKEN }}"
automatic_release_tag: v${{ github.event.inputs.version }}
prerelease: false
title: v${{ github.event.inputs.version }}
tag_name: v${{ github.event.inputs.version }}
name: v${{ github.event.inputs.version }}
body: |
sourceUrl: ${{ env.SOURCE_URL }}
checksum: ${{ env.CHECKSUM }}
timestamp: ${{ env.TIMESTAMP }}
files: |
intro-skipper-v${{ github.event.inputs.version }}.zip
intro-skipper-v${{ github.event.inputs.version }}.zip.md5
draft: false
prerelease: false
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}

0 comments on commit 78c05a7

Please sign in to comment.