Skip to content

Allow settings double-tap and hold actions #193

Allow settings double-tap and hold actions

Allow settings double-tap and hold actions #193

Workflow file for this run

name: CI
on:
push:
branches: [ master ]
pull_request:
branches: [ master ]
release:
types: [ created ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Java
uses: actions/setup-java@v4
with:
distribution: 'temurin'
java-version: 8
- name: Build
run: make
- name: Upload Plugin
uses: actions/upload-artifact@v4
with:
name: Plugin
path: '*.sh3p'
compression-level: 0
- name: Upload Release
if: github.event_name == 'release' && github.event.action == 'created'
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: gh release upload ${GITHUB_REF#refs/tags/} *.sh3p