Skip to content

Commit

Permalink
GH Actions deploy action
Browse files Browse the repository at this point in the history
  • Loading branch information
TechnicJelle committed Jul 21, 2024
1 parent 2eebf17 commit a77ea2b
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Deploy to BlueColored Repo

on:
release:
types: [ released ]

# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
deploy:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up JDK 17
uses: actions/setup-java@v4
with:
java-version: '17'
distribution: 'temurin'
- name: Deploy
run: mvn clean deploy

0 comments on commit a77ea2b

Please sign in to comment.