diff options
author | Linnea Gräf <nea@nea.moe> | 2024-06-02 18:07:34 +0200 |
---|---|---|
committer | Linnea Gräf <nea@nea.moe> | 2024-06-02 18:07:34 +0200 |
commit | 561daa5b02e742d153bb79390baf485a18ba2633 (patch) | |
tree | 154315dc7435e4f30234c104666e9fbddd5db8d7 | |
download | testrepo-561daa5b02e742d153bb79390baf485a18ba2633.tar.gz testrepo-561daa5b02e742d153bb79390baf485a18ba2633.tar.bz2 testrepo-561daa5b02e742d153bb79390baf485a18ba2633.zip |
-rw-r--r-- | .github/workflows/release.yml | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..6cbbcd7 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,16 @@ +on: + release: + types: + - published +jobs: + upload: + runs-on: ubuntu-latest + steps: + - name: Download file + run: | + gh repo $TAG -p '*.jar' + env: + TAG: ${{ github.event.release.tag_name }} + - name: Show files + run: | + ls -Rla . |