diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 53fa6401..21950b7c 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -15,7 +15,7 @@ jobs: java-version: 17 cache: sbt - name: Compile - run: sbt Test/compile + run: sbt "set scalaJSStage in Global := FullOptStage" Test/compile - name: Build deb packages run: | sudo apt-get install -y lintian diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml new file mode 100644 index 00000000..6fd90e66 --- /dev/null +++ b/.github/workflows/deploy.yml @@ -0,0 +1,42 @@ +name: Deploy + +on: push + +jobs: + build: + name: Build + runs-on: ubuntu-22.04 + + steps: + - uses: actions/checkout@v4 + - uses: actions/setup-java@v4 + with: + distribution: zulu + java-version: 17 + cache: sbt + - name: Configure SSH + run: | + mkdir -p ~/.ssh/ + echo "$SSH_KEY" > ~/.ssh/ga.key + chmod 600 ~/.ssh/ga.key + cat >>~/.ssh/config <