Skip to content

convert images to data ui (effectively embedding them into the html) #4

convert images to data ui (effectively embedding them into the html)

convert images to data ui (effectively embedding them into the html) #4

Workflow file for this run

name: Release
on:
push:
tags:
- "v*.*.*"
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- uses: actions/setup-java@v3
with:
distribution: 'temurin'
java-version: '8'
cache: 'sbt'
- name: Extract version from tag
run: echo "PROJECT_VERSION=${GITHUB_REF#refs/tags/v}" >> $GITHUB_ENV
- name: Build JAR
run: |
sbt 'set version := "'"$PROJECT_VERSION"'"' assembly
mv target/scala-2.11/*-assembly-*.jar royalroad-downloader.jar
- name: Release
uses: softprops/action-gh-release@v1
with:
files: royalroad-downloader.jar
fail_on_unmatched_files: true