Skip to content

Commit

Permalink
Added GitHub release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
bsrinivas8687 committed Aug 8, 2023
1 parent cc8cd84 commit 37182f4
Showing 1 changed file with 33 additions and 0 deletions.
33 changes: 33 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: "Release"

on:
release:
types:
- created

jobs:
artifacts:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3

- name: Build Docker image
run: docker build --compress --file Dockerfile --force-rm --tag sentinel-official/sentinelhub .

- name: Copy binary file
run: |
docker create --name container sentinel-official/sentinelhub && \
docker cp container:/usr/local/bin/sentinelhub ./sentinelhub && \
docker rm container
- name: Save SHA256 sum
run: sha256sum ./sentinelhub > ./sentinelhub_sha256.txt

- name: Upload release artifacts
uses: softprops/action-gh-release@v1
with:
token: ${{ secrets.GITHUB_TOKEN }}
files: |
sentinelhub
sentinelhub_sha256.txt

0 comments on commit 37182f4

Please sign in to comment.