1
0
Fork 0

refactor: pull artifact handling in action
Some checks failed
/ sast (push) Has been cancelled
/ post-run-notify (push) Has been cancelled
/ pre-run-notify (push) Has been cancelled

This commit is contained in:
Marc 2024-07-20 19:03:05 -04:00
parent 7fdf2498a9
commit 39663e97ca
Signed by: marc
GPG key ID: 048E042F22B5DC79
2 changed files with 15 additions and 15 deletions

View file

@ -11,6 +11,7 @@ inputs:
message-id: message-id:
description: "Message ID to edit." description: "Message ID to edit."
outputs: outputs:
message-id: message-id:
description: "ID of the message that was posted, for editing purposes in further calls." description: "ID of the message that was posted, for editing purposes in further calls."
@ -23,8 +24,21 @@ runs:
uses: actions/setup-python@v5 uses: actions/setup-python@v5
with: with:
python-version: 3.12 python-version: 3.12
- uses: actions/download-artifact@v3
with:
name: "${{ github.sha }}-${{github.run_number}}-discord-context.zip"
path: /tmp
- id: set-context
run: |
echo "message-id=$(cat /tmp/discord-context)" >> $GITHUB_OUTPUT
- name: Install dependencies - name: Install dependencies
run: pip install -r ./.forgejo/actions/push-status-to-discord/requirements.txt run: pip install -r ./.forgejo/actions/push-status-to-discord/requirements.txt
- id: post-message - id: post-message
run: | run: |
echo "message-id=$(python ./.forgejo/actions/push-status-to-discord/main.py ${{ inputs.webhook-url }} ${{ inputs.project-name }} ${{ inputs.status }} ${{ inputs.message-id }})" >> $GITHUB_OUTPUT echo "message-id=$(python ./.forgejo/actions/push-status-to-discord/main.py ${{ inputs.webhook-url }} ${{ inputs.project-name }} ${{ inputs.status }} ${{ steps.set-context.outputs.message-id }})" >> discord-context
- uses: actions/upload-artifact@v3
with:
path: ./discord-context
name: "${{ github.sha }}-${{ github.run_number }}-discord-context.zip"
retention-days: 1
overwrite: true

View file

@ -12,12 +12,6 @@ jobs:
webhook-url: ${{ secrets.DISCORD_WEBHOOK_URL }} webhook-url: ${{ secrets.DISCORD_WEBHOOK_URL }}
project-name: ${{ github.repository }} project-name: ${{ github.repository }}
status: "Started" status: "Started"
- run: echo ${{ steps.post-status.outputs.message-id }} >> discord-context
- uses: actions/upload-artifact@v3
with:
path: ./discord-context
name: "${{ github.sha }}-${{ github.run_number }}-discord-context.zip"
retention-days: 1
sast: sast:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
@ -34,16 +28,8 @@ jobs:
if: always() if: always()
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
- uses: actions/download-artifact@v3
with:
name: "${{ github.sha }}-${{github.run_number}}-discord-context.zip"
path: /tmp
- id: set-context
run: |
echo "message-id=$(cat /tmp/discord-context)" >> $GITHUB_OUTPUT
- uses: ./.forgejo/actions/push-status-to-discord - uses: ./.forgejo/actions/push-status-to-discord
with: with:
webhook-url: ${{ secrets.DISCORD_WEBHOOK_URL }} webhook-url: ${{ secrets.DISCORD_WEBHOOK_URL }}
project-name: ${{ github.repository }} project-name: ${{ github.repository }}
status: "Success" status: "Success"
message-id: ${{ steps.set-context.outputs.message-id }}