Skip to content

Commit

Permalink
114: Prepared release 1.1.0 (#115)
Browse files Browse the repository at this point in the history
  • Loading branch information
redcatbear authored Apr 20, 2022
1 parent 03f16ea commit 2cd466c
Show file tree
Hide file tree
Showing 5 changed files with 19 additions and 47 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/ci-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,13 +26,6 @@ jobs:
java-version: '11'
distribution: 'temurin'
cache: 'maven'
- name: Cache local Maven repository
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: "Prepare container reuse"
run: |
echo 'testcontainers.reuse.enable=true' > "/home/runner/.testcontainers.properties"
Expand Down
7 changes: 0 additions & 7 deletions .github/workflows/release_droid_prepare_original_checksum.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,6 @@ jobs:
java-version: '11'
distribution: 'temurin'
cache: 'maven'
- name: Cache local Maven repository
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: "Prepare container reuse"
run: |
echo 'testcontainers.reuse.enable=true' > "/home/runner/.testcontainers.properties"
Expand Down
7 changes: 0 additions & 7 deletions .github/workflows/release_droid_print_quick_checksum.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,13 +28,6 @@ jobs:
java-version: '11'
distribution: 'temurin'
cache: 'maven'
- name: Cache local Maven repository
uses: actions/cache@v2
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: "Build with Maven skipping tests"
run: mvn --batch-mode clean verify -DskipTests
- name: "Print checksum"
Expand Down
43 changes: 18 additions & 25 deletions .github/workflows/release_droid_upload_github_release_assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,29 +32,22 @@ jobs:
java-version: '11'
distribution: 'temurin'
cache: 'maven'
- name: Cache local Maven repository
uses: actions/cache@v2
- name: "Build with Maven skipping tests"
run: mvn --batch-mode clean verify -DskipTests
- name: Generate sha256sum files
run: find target -maxdepth 1 \( -name '*.lua' -o -name '*.sql' \) -exec bash -c 'sha256sum {} > {}.sha256' \;
- name: "Upload assets to the GitHub release draft"
uses: shogo82148/actions-upload-release-asset@v1
with:
path: ~/.m2/repository
key: ${{ runner.os }}-maven-${{ hashFiles('**/pom.xml') }}
restore-keys: |
${{ runner.os }}-maven-
- name: "Build with Maven skipping tests"
run: mvn --batch-mode clean verify -DskipTests
- name: Generate sha256sum files
run: find target -maxdepth 1 \( -name '*.lua' -o -name '*.sql' \) -exec bash -c 'sha256sum {} > {}.sha256' \;
- name: "Upload assets to the GitHub release draft"
uses: shogo82148/actions-upload-release-asset@v1
with:
upload_url: ${{ github.event.inputs.upload_url }}
asset_path: target/*.jar
- name: "Upload sha256sum files"
uses: shogo82148/actions-upload-release-asset@v1
with:
upload_url: ${{ github.event.inputs.upload_url }}
asset_path: target/*.sha256
- name: "Upload error-code-report"
uses: shogo82148/actions-upload-release-asset@v1
with:
upload_url: ${{ github.event.inputs.upload_url }}
asset_path: target/error_code_report.json
upload_url: ${{ github.event.inputs.upload_url }}
asset_path: target/*.jar
- name: "Upload sha256sum files"
uses: shogo82148/actions-upload-release-asset@v1
with:
upload_url: ${{ github.event.inputs.upload_url }}
asset_path: target/*.sha256
- name: "Upload error-code-report"
uses: shogo82148/actions-upload-release-asset@v1
with:
upload_url: ${{ github.event.inputs.upload_url }}
asset_path: target/error_code_report.json
2 changes: 1 addition & 1 deletion doc/changes/changes_1.1.0.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# Exasol Row Level Security (Lua) 1.1.0, released 2021-11-??
# Exasol Row Level Security (Lua) 1.1.0, released 2022-04-20

Code name: New capabilities for GROUP BY

Expand Down

0 comments on commit 2cd466c

Please sign in to comment.