Skip to content

Dockerfile for libfortran and libfreetype #210

Dockerfile for libfortran and libfreetype

Dockerfile for libfortran and libfreetype #210

Workflow file for this run

name: CI Release
on:
push:
branches: [master, main]
tags: ["*"]
jobs:
publish:
runs-on: ubuntu-20.04
steps:
- uses: actions/checkout@v2.3.4
with:
fetch-depth: 0
- uses: olafurpg/setup-scala@v13
- run: |
umask 077
mkdir -p ~/.gnupg
ls -ld ~/.gnupg
echo
echo "charset utf-8" > ~/.gnupg/gpg.conf
echo "use-agent" >> ~/.gnupg/gpg.conf
echo "pinentry-mode loopback" >> ~/.gnupg/gpg.conf
ls -l ~/.gnupg/gpg.conf
echo "CONTENTS OF: ~/.gnupg/gpg.conf"
cat ~/.gnupg/gpg.conf
echo
echo "allow-loopback-pinentry" > ~/.gnupg/gpg-agent.conf
ls -l ~/.gnupg/gpg-agent.conf
echo "CONTENTS OF: ~/.gnupg/gpg-agent.conf"
cat ~/.gnupg/gpg-agent.conf
echo
- run: sbt coverage test
- run: sbt coverageReport
- uses: codecov/codecov-action@v2
- run: sbt ci-release
env:
PGP_PASSPHRASE: ${{ secrets.PGP_PASSPHRASE }}
PGP_SECRET: ${{ secrets.PGP_SECRET }}
SONATYPE_PASSWORD: ${{ secrets.SONATYPE_PASSWORD }}
SONATYPE_USERNAME: ${{ secrets.SONATYPE_USERNAME }}