Skip to content

Add missing Salesforce types. (#29) #14

Add missing Salesforce types. (#29)

Add missing Salesforce types. (#29) #14

Workflow file for this run

name: publish
on:
workflow_dispatch:
push:
tags:
- "v*.*.*"
env:
GITHUB_TOKEN: ${{ secrets.WRITE_PACKAGES }}
jobs:
publish-jars:
runs-on: self-hosted
container:
image: sbtscala/scala-sbt:eclipse-temurin-jammy-21.0.2_13_1.9.9_2.12.19
options: --user 1001:1001
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: sbt publish
run: sbt clean publish
publish-docker-image:
runs-on: self-hosted
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.WRITE_PACKAGES }}
logout: false
- name: publish docker images
run: .github/scripts/dnd-sbt docker/Docker/publish