Skip to content

Commit

Permalink
Create dev.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
MrXiaoM committed Dec 2, 2023
1 parent 12bf62f commit 87f53b2
Showing 1 changed file with 38 additions and 0 deletions.
38 changes: 38 additions & 0 deletions .github/workflows/dev.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,38 @@
name: Build Snapshots
on:
push:
branches: [ "main" ]
paths-ignore:
- '*.md'
pull_request:
branches: [ "main" ]
paths-ignore:
- '*.md'
permissions:
contents: write
jobs:
build:
permissions:
contents: write
packages: write
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Java 8
uses: actions/setup-java@v3
with:
distribution: temurin
java-version: 8
- name: Get short SHA
run: echo "SHORT_SHA=${GITHUB_SHA::7}" >> $GITHUB_ENV
- name: Build Package
uses: gradle/gradle-build-action@v2
with:
arguments: :overflow-core-all:shadowJar
- name: Upload Artifacts
uses: actions/upload-artifact@v3
with:
name: overflow-core-all-${{ env.SHORT_SHA }}
path: overflow-core-all/build/libs/*-all.jar
if-no-files-found: error

0 comments on commit 87f53b2

Please sign in to comment.