name: Release Nightly on: push: branches: - "master" jobs: release-nightly: runs-on: ubuntu-22.04 strategy: fail-fast: true matrix: java: [ 'openjdk@1.17' ] steps: - uses: actions/checkout@v4.1.1 with: fetch-depth: 0 - uses: olafurpg/setup-scala@v14 with: java-version: ${{ matrix.java }} - uses: jorelali/setup-elm@v5 with: elm-version: 0.19.1 - uses: bahmutov/npm-install@v1 with: working-directory: modules/webapp # - name: Coursier cache # uses: coursier/cache-action@v6 - name: Set current version run: echo "DOCSPELL_VERSION=$(cat version.sbt | grep version | cut -d= -f2 | xargs)" >> $GITHUB_ENV - name: sbt ci ${{ github.ref }} run: sbt ci env: SBT_OPTS: "-Xmx2G -Xss4m" - name: sbt make-pkg (${{ env.DOCSPELL_VERSION }}) run: sbt make-pkg env: SBT_OPTS: "-Xmx2G -Xss4m" - uses: "marvinpinto/action-automatic-releases@latest" with: repo_token: "${{ secrets.GITHUB_TOKEN }}" automatic_release_tag: "nightly" prerelease: true title: "Docspell Nightly" files: | modules/restserver/target/docspell-restserver_${{ env.DOCSPELL_VERSION }}_all.deb modules/restserver/target/universal/docspell-restserver-${{ env.DOCSPELL_VERSION }}.zip modules/joex/target/docspell-joex_${{ env.DOCSPELL_VERSION }}_all.deb modules/joex/target/universal/docspell-joex-${{ env.DOCSPELL_VERSION }}.zip - name: Set up QEMU uses: docker/setup-qemu-action@v3 - name: Set up Docker Buildx id: buildx uses: docker/setup-buildx-action@v3 - name: Log in to Docker Hub uses: docker/login-action@v3 with: username: ${{ secrets.DOCKER_USERNAME }} password: ${{ secrets.DOCKER_PASSWORD }} - name: Build and push Docker Images (${{ env.DOCSPELL_VERSION }}) run: ./docker/dockerfiles/build.sh ${{ env.DOCSPELL_VERSION }} --push