Skip to content

Commit

Permalink
add workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ZakChrom committed Jun 12, 2024
1 parent 61331d2 commit 07a8479
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
name: Zip emojis
permissions:
contents: write

on: [push]
jobs:
zip:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Zip
run: zip -r emojis.zip . -x ".github/*"
shell: bash

- name: Upload release
run: gh release create `git log -n 1 --pretty=format:"%h"` emojis.zip
env:
GITHUB_TOKEN: ${{ github.TOKEN }}
shell: bash

0 comments on commit 07a8479

Please sign in to comment.