Skip to content

Commit

Permalink
Create main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
LordZanos authored Mar 9, 2024
1 parent 8021316 commit 4327ba9
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: GitHub Archive

on:
push:

jobs:
archive:
runs-on: ubuntu-latest
steps:
- name: Check out repo
uses: actions/checkout@v2
with:
ref: 'github-meta'
- name: Create Archive
uses: ksm2/archive-action@v1
with:
name: test.zip
- name: Upload to relase
uses: svenstaro/upload-release-action@v2
with:
file: test.zip
asset_name: test.zip
overwrite: true
body: "This is my release text"

0 comments on commit 4327ba9

Please sign in to comment.