Skip to content

Commit

Permalink
Create Artifact.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
Fusion-Priyakant authored Jun 14, 2024
1 parent a69cecd commit a913540
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/Artifact.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Upload Analysis Zip as Artifact

on:
workflow_dispatch:

jobs:
upload_artifact:
runs-on: self-hosted

steps:
- name: Checkout repository
uses: actions/checkout@v4

- name: Create analysis.zip
run: |
Compress-Archive -Path C:\FusionLiteProjects\OrchardCore\Data\Imports\* -DestinationPath C:\FusionLiteProjects\OrchardCore\Data\Imports\analysis.zip -Force
- name: Upload Artifact
uses: actions/upload-artifact@v4
with:
name: analysis-zip
path: C:\FusionLiteProjects\OrchardCore\Data\Imports\analysis.zip

0 comments on commit a913540

Please sign in to comment.