Skip to content

Commit

Permalink
release
Browse files Browse the repository at this point in the history
  • Loading branch information
itayd committed Oct 31, 2024
1 parent 615ffd4 commit 809af17
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/dist.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Dist

on:
push:
branches: [main]

jobs:
dist:
concurrency:
group: kittehub-releases-dist
cancel-in-progress: true
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: build
run: zip -r /tmp/dist .
- name: push
run: |
cd /tmp
git clone [email protected]:autokitteh/kittehub-releases.git
cd kittehub-releases
mv /tmp/dist.zip .
git add dist.zip
git commit -m "update"
git push origin HEAD:main

0 comments on commit 809af17

Please sign in to comment.