Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: bump to 0.12.0-alpha.1 #157

Merged
merged 2 commits into from
Jul 22, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
22 changes: 0 additions & 22 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,17 +51,6 @@ jobs:
release/adc_${{ env.RELEASE_VERSION }}_windows_amd64.zip
release/adc_${{ env.RELEASE_VERSION }}_windows_arm64.zip

- name: Configure AWS S3 credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-west-2

- name: Upload ADC to AWS S3
run: |
aws s3 sync ./release s3://api7ai-docs-resources/adc/release

adc-macos:
runs-on: macos-14
steps:
Expand Down Expand Up @@ -104,14 +93,3 @@ jobs:
files: |
release/adc_${{ env.RELEASE_VERSION }}_darwin_arm64.tar.gz
release/adc_${{ env.RELEASE_VERSION }}_darwin_amd64.tar.gz

- name: Configure AWS S3 credentials
uses: aws-actions/configure-aws-credentials@v1
with:
aws-access-key-id: ${{ secrets.AWS_ACCESS_KEY_ID }}
aws-secret-access-key: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws-region: us-west-2

- name: Upload ADC to AWS S3
run: |
aws s3 sync ./release s3://api7ai-docs-resources/adc/release
2 changes: 1 addition & 1 deletion apps/cli/src/command/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ export const setupCommands = (): Command => {
program
.configureHelp({ showGlobalOptions: true })
.passThroughOptions()
.version('0.11.1');
.version('0.12.0-alpha.1');

program
.addCommand(PingCommand)
Expand Down
Loading