Skip to content

Commit

Permalink
Add the necessary github workflow code for release of sqs-ingest
Browse files Browse the repository at this point in the history
  • Loading branch information
rtyler committed Apr 8, 2024
1 parent 6d1bc34 commit 24edaba
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 1 deletion.
10 changes: 10 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -116,3 +116,13 @@ jobs:
asset_path: ./target/lambda/webhook/bootstrap.zip
asset_name: webhook-lambda-bootstrap-${{ github.ref_name }}.zip
asset_content_type: application/zip

- name: Upload sqs-ingest lambda
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ github.token }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./target/lambda/sqs-ingest/bootstrap.zip
asset_name: sqs-ingest-lambda-bootstrap-${{ github.ref_name }}.zip
asset_content_type: application/zip
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ members = [
resolver = "2"

[workspace.package]
version = "0.11.0"
version = "0.11.1"
edition = "2021"
keywords = ["deltalake", "parquet", "lambda", "delta", "sqs"]
homepage = "https://github.com/buoyant-data/oxbow"
Expand Down

0 comments on commit 24edaba

Please sign in to comment.