Add a job to heal projects at startup (#5221) #854
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Snapshot | |
on: | |
push: | |
branches: | |
- master | |
paths: | |
- 'cli/**' | |
- 'delta/**' | |
- 'build.sbt' | |
- 'project/**' | |
- 'ship/**' | |
- '.github/workflows/ci-snapshot.yml' | |
jobs: | |
publish-snapshot: | |
if: github.event_name == 'push' | |
runs-on: ubuntu-latest | |
timeout-minutes: 40 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Setup JDK | |
uses: actions/setup-java@v4 | |
with: | |
distribution: 'temurin' | |
java-version: '21' | |
cache: 'sbt' | |
check-latest: true | |
- name: Setup SBT | |
uses: sbt/setup-sbt@v1 | |
- name: Set up proxy for docker buildx | |
run: | | |
echo http_proxy=${http_proxy} >> $GITHUB_ENV | |
echo https_proxy=${https_proxy} >> $GITHUB_ENV | |
echo no_proxy=${no_proxy} >> $GITHUB_ENV | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@v3 | |
with: | |
driver-opts: | | |
env.http_proxy=${{ env.http_proxy }} | |
env.https_proxy=${{ env.https_proxy }} | |
"env.no_proxy='${{ env.no_proxy}}'" | |
- name: Publish To DockerHub | |
run: | | |
echo ${{ secrets.DOCKER_PASS }} | docker login --username ${{ secrets.DOCKER_USER }} --password-stdin | |
sbt -Dsbt.color=always -Dsbt.supershell=false \ | |
app/Docker/publish \ | |
ship/Docker/publish |