From ce1cd31b92b5c389a4ce03d16d08c8fd5e67539a Mon Sep 17 00:00:00 2001 From: Mike Audi Date: Tue, 13 Dec 2022 16:19:28 -0600 Subject: [PATCH 1/3] added readme sync --- .github/workflows/ci_cd.yml | 15 ++++++++++++++- .github/workflows/pages.yml | 36 ------------------------------------ 2 files changed, 14 insertions(+), 37 deletions(-) delete mode 100644 .github/workflows/pages.yml diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index f45a628..75688de 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -98,6 +98,7 @@ jobs: JAR_FILE=target/*.jar DOPPLER_ST=${{ secrets.DOPPLER_ST }} + deploy_to_infra: runs-on: ubuntu-latest needs: [build_test_push] @@ -174,4 +175,16 @@ jobs: REMOTE_ID: ${{ secrets.WORKER_ENV_REMOTE_ID }} REMOTE_SECRET: ${{ secrets.WORKER_ENV_REMOTE_SECRET }} WASABI_ID: ${{ secrets.WORKER_ENV_WASABI_ID }} - WASABI_SECRET: ${{ secrets.WORKER_ENV_WASABI_SECRET }} \ No newline at end of file + WASABI_SECRET: ${{ secrets.WORKER_ENV_WASABI_SECRET }} + + publish_docs: + runs-on: ubuntu-latest + environment: Production + steps: + - name: Checkout + uses: actions/checkout@v2.1.1 + + - name: OpenApi + uses: readmeio/rdme@8.3.0 + with: + rdme: openapi docs/openapi.yaml --key=${{ secrets.README_API_KEY }} --id=6379efc05c98fc002512b213 \ No newline at end of file diff --git a/.github/workflows/pages.yml b/.github/workflows/pages.yml deleted file mode 100644 index 64d2f33..0000000 --- a/.github/workflows/pages.yml +++ /dev/null @@ -1,36 +0,0 @@ -name: docs - -on: - push: - tags: - - '*.*.*' - -permissions: - contents: write - pages: write - id-token: write - -concurrency: - group: "docs" - cancel-in-progress: true - -jobs: - deploy: - environment: - name: github-pages - url: ${{ steps.deployment.outputs.page_url }} - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v3 - - name: Setup Pages - uses: actions/configure-pages@v2 - - name: Upload artifact - uses: actions/upload-pages-artifact@v1 - with: - path: './docs' - - name: Deploy to GitHub Pages - id: deployment - uses: actions/deploy-pages@v1 - - name: Release - uses: softprops/action-gh-release@v1 From 42eda313cae8582d36e361e3b38484d6a6a1eb0d Mon Sep 17 00:00:00 2001 From: Mike Audi Date: Tue, 13 Dec 2022 16:22:03 -0600 Subject: [PATCH 2/3] bump version(s) --- pom.xml | 12 ++++++------ worker/upload/package.json | 2 +- 2 files changed, 7 insertions(+), 7 deletions(-) diff --git a/pom.xml b/pom.xml index b0634ae..bef061c 100644 --- a/pom.xml +++ b/pom.xml @@ -12,7 +12,7 @@ com.mytiki l0_storage - 0.0.15 + 0.0.16 jar L0 Storage @@ -21,7 +21,7 @@ org.springframework.boot spring-boot-starter-parent - 2.7.5 + 2.7.6 @@ -77,12 +77,12 @@ org.springdoc springdoc-openapi-webmvc-core - 1.6.12 + 1.6.13 org.springdoc springdoc-openapi-security - 1.6.12 + 1.6.13 org.openapitools @@ -93,12 +93,12 @@ io.sentry sentry-spring-boot-starter - 6.6.0 + 6.9.0 io.sentry sentry-logback - 6.6.0 + 6.9.0 diff --git a/worker/upload/package.json b/worker/upload/package.json index 613f59a..8d8cb7c 100644 --- a/worker/upload/package.json +++ b/worker/upload/package.json @@ -1,6 +1,6 @@ { "name": "l0-storage-upload", - "version": "0.0.15", + "version": "0.0.16", "type": "module", "devDependencies": { "@babel/core": "^7.20.2", From ee02d2d5673459c57ab5ac99ce73d383fb7db26c Mon Sep 17 00:00:00 2001 From: Mike Audi Date: Tue, 13 Dec 2022 16:23:38 -0600 Subject: [PATCH 3/3] mark the release in GH --- .github/workflows/ci_cd.yml | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci_cd.yml b/.github/workflows/ci_cd.yml index 75688de..3343d4b 100644 --- a/.github/workflows/ci_cd.yml +++ b/.github/workflows/ci_cd.yml @@ -187,4 +187,7 @@ jobs: - name: OpenApi uses: readmeio/rdme@8.3.0 with: - rdme: openapi docs/openapi.yaml --key=${{ secrets.README_API_KEY }} --id=6379efc05c98fc002512b213 \ No newline at end of file + rdme: openapi docs/openapi.yaml --key=${{ secrets.README_API_KEY }} --id=6379efc05c98fc002512b213 + + - name: Release + uses: softprops/action-gh-release@v1 \ No newline at end of file