Skip to content

v12.0.0-rc.13

v12.0.0-rc.13 #24

Workflow file for this run

name: "Release"
on:
release:
types:
- published
jobs:
artifacts:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Checkout Repository
uses: actions/checkout@v5
- name: Build and Tag Docker Image
run: make build-image
- name: Extract Binary from Docker Image
run: |
docker create --name artifacts sentinel-official/sentinelhub
docker cp artifacts:/usr/local/bin/sentinelhub ./sentinelhub
docker rm artifacts
- name: Generate SHA256 Checksum
run: sha256sum sentinelhub > ./checksums.txt
- name: Upload Release Artifacts
uses: softprops/action-gh-release@6cbd405e2c4e67a21c47fa9e383d020e4e28b836 #v2.3.3
with:
token: ${{ secrets.GITHUB_TOKEN }}
files: |
checksums.txt
sentinelhub