Skip to content

v12.0.0-rc8

v12.0.0-rc8 #18

Workflow file for this run

name: "Release"
on:
release:
types:
- published
jobs:
artifacts:
runs-on: ubuntu-latest
steps:
- name: Checkout Repository
uses: actions/checkout@v4
- name: Build and Tag Docker Image
run: docker build --compress --file Dockerfile --force-rm --tag sentinel-official/sentinelhub .
- 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@v2
with:
token: ${{ secrets.GITHUB_TOKEN }}
files: |
checksums.txt
sentinelhub