Skip to content

Merge pull request #3 from scala-steward/update/os-lib-0.9.1 #18

Merge pull request #3 from scala-steward/update/os-lib-0.9.1

Merge pull request #3 from scala-steward/update/os-lib-0.9.1 #18

Workflow file for this run

name: CI
on:
push:
branches:
- main
tags:
- "v*"
pull_request:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
# - uses: coursier/[email protected]
- uses: VirtusLab/[email protected]
- name: Test
run: scala-cli --power test src --cross
# publish:
# needs: test
# if: github.event_name == 'push'
# runs-on: ubuntu-latest
# steps:
# - uses: actions/checkout@v3
# with:
# fetch-depth: 0
# - uses: coursier/[email protected]
# - uses: VirtusLab/[email protected]
# - name: Publish
# run: scala-cli --power publish src --cross
# env:
# PUBLISH_USER: ${{ secrets.PUBLISH_USER }}
# PUBLISH_PASSWORD: ${{ secrets.PUBLISH_PASSWORD }}
# PUBLISH_SECRET_KEY: ${{ secrets.PUBLISH_SECRET_KEY }}
# PUBLISH_SECRET_KEY_PASSWORD: ${{ secrets.PUBLISH_SECRET_KEY_PASSWORD }}
package:
needs: test
if: github.event_name == 'push'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
# - uses: coursier/[email protected]
- uses: VirtusLab/[email protected]
- name: Create and upload archives
run: scala-cli run Upload.scala
env:
UPLOAD_GH_TOKEN: ${{ secrets.GITHUB_TOKEN }}