Skip to content

Commit

Permalink
Release 0.1.0
Browse files Browse the repository at this point in the history
  • Loading branch information
davesmith00000 committed Jun 13, 2022
1 parent 7f70699 commit b90ea08
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 5 deletions.
10 changes: 5 additions & 5 deletions build.sbt
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ val scala3Version = "3.1.2"
val indigoVersion = "0.13.0"

lazy val commonSettings: Seq[sbt.Def.Setting[_]] = Seq(
version := "0.1.0-SNAPSHOT",
version := "0.1.0",
scalaVersion := scala3Version,
organization := "io.indigoengine",
libraryDependencies ++= Seq(
Expand Down Expand Up @@ -104,8 +104,8 @@ lazy val demo =
// scalaJSLinkerConfig ~= { _.withModuleKind(ModuleKind.CommonJSModule) } // required for parcel, but will break indigoRun & indigoBuild
)
.settings(
publish := {},
publishLocal := {}
publish / skip := true,
publishLocal / skip := true
)
.dependsOn(roguelike)

Expand All @@ -117,8 +117,8 @@ lazy val roguelikeStarterKit =
code := { "code ." ! }
)
.settings(
publish := {},
publishLocal := {}
publish / skip := true,
publishLocal / skip := true
)
.aggregate(roguelike, demo)
.settings(
Expand Down
11 changes: 11 additions & 0 deletions release.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/usr/bin/env bash

# Run from root.

set -e

export GPG_TTY=$(tty)

source credentials.sh

sbt clean update compile test publishSigned sonatypeBundleRelease

0 comments on commit b90ea08

Please sign in to comment.