Update Jenkinsfile #32
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: Generate Checksums | |
on: | |
push: | |
branches: | |
- master | |
jobs: | |
generate-checksums: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: Generate checksums | |
run: | | |
find . -type f -exec sha256sum {} + > checksums.txt | |
- name: Display checksums | |
run: cat checksums.txt |