File tree Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Expand file tree Collapse file tree 1 file changed +10
-1
lines changed Original file line number Diff line number Diff line change @@ -18,12 +18,21 @@ jobs:
1818 - name : Checkout repository
1919 uses : actions/checkout@v4
2020
21+ - name : Verify logo file exists
22+ run : |
23+ ls -la ${{ github.workspace }}/pr_logo/
24+ if [ ! -f "${{ github.workspace }}/pr_logo/long_logo_hpc.png" ]; then
25+ echo "ERROR: Logo file not found!"
26+ exit 1
27+ fi
28+ echo "Logo file found at: ${{ github.workspace }}/pr_logo/long_logo_hpc.png"
29+
2130 - name : Post to Mastodon
2231 uses : snakemake/mastodon-release-post-action@main # == latest
2332 with :
2433 access-token : ${{ secrets.MASTODONBOT }}
2534 pr-title : ${{ github.event.head_commit.message }}
26- image : " ${{ github.workspace }}/ pr_logo/long_logo_hpc.png"
35+ image : pr_logo/long_logo_hpc.png
2736 image-description : " Snakemake HPC logo for Mastodon"
2837 message : |
2938 Beep, Beep - I am your friendly #Snakemake release announcement bot.
You can’t perform that action at this time.
0 commit comments