Skip to content

Update readme.md

Update readme.md #21

Workflow file for this run

# This workflow will build a Java project with Ant
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-java-with-ant
name: Build Satochip DIY Applets
on:
schedule:
- cron: "0 0 1 * *"
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
submodules: 'true'
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'temurin'
- name: Build with Ant
run: ant
- name: Generate Checksums (Echo to log)
run: find ./build/ -type f -exec sha256sum {} \;
- name: Generate Checksums (For Artifacts)
run: find ./build/ -type f -exec sha256sum {} \; > ./build/sha256sums.txt
- name: Upload a Build Artifact
uses: actions/[email protected]
with:
name: Satochip-DIY-Applets
path: ./build/