Skip to content

Commit

Permalink
remove concurrency lock (#192)
Browse files Browse the repository at this point in the history
  • Loading branch information
adam-mateen authored May 10, 2023
1 parent a8a70a4 commit bc72906
Showing 1 changed file with 2 additions and 6 deletions.
8 changes: 2 additions & 6 deletions .github/workflows/alpha-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,10 +11,6 @@ on:
release:
types: [published]

concurrency:
group: ${{ github.workflow }}-${{ github.ref_name }}
cancel-in-progress: true

jobs:
UploadRelease:
name: "UploadRelease"
Expand Down Expand Up @@ -58,7 +54,7 @@ jobs:
if [ "$current_val" = "$new_val" ]; then
echo "This version has already been published. Do nothing."
exit 1
fi
fi
- name: Copy RPM To Release
run: |
Expand All @@ -71,7 +67,7 @@ jobs:
export tag=$(cat build/bin/CWAGENT_VERSION)
aws s3 cp build/bin/linux/amd64/amazon-cloudwatch-agent.rpm s3://${S3_INTEGRATION_BUCKET}/release/${tag}/amazon_linux/amd64/latest/amazon-cloudwatch-agent.rpm
aws s3 cp build/bin/linux/arm64/amazon-cloudwatch-agent.rpm s3://${S3_INTEGRATION_BUCKET}/release/${tag}/amazon_linux/arm64/latest/amazon-cloudwatch-agent.rpm
aws s3 cp build/bin/CWAGENT_VERSION s3://${S3_INTEGRATION_BUCKET}/release/${tag}/CWAGENT_VERSION
aws s3 cp build/bin/CWAGENT_VERSION s3://${S3_INTEGRATION_BUCKET}/release/${tag}/CWAGENT_VERSION
# Assume we do not run 2 releases at the same time
DeployCanary:
Expand Down

0 comments on commit bc72906

Please sign in to comment.