Skip to content

Commit

Permalink
no concurrency on release
Browse files Browse the repository at this point in the history
  • Loading branch information
milesstoetzner committed Aug 18, 2023
1 parent b26206f commit 724cf01
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 11 deletions.
11 changes: 0 additions & 11 deletions .github/workflows/build.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -100,17 +100,6 @@ jobs:
console.log("Did not delete tag:", e)
}
- name: (RELEASE) Create Build Tag
uses: actions/github-script@v3
with:
script: |
await github.git.createRef({
owner: context.repo.owner,
repo: context.repo.repo,
ref: `refs/tags/build-${context.sha}`,
sha: context.sha
})
- name: (RELEASE) Create Build Release
run: gh release create build-${GITHUB_SHA} -t "Build ${GITHUB_SHA}" -n "This is the build of the commit ${GITHUB_SHA}" ./dist/*
env:
Expand Down
1 change: 1 addition & 0 deletions .github/workflows/release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- main
- fix/release-workflow

concurrency: release
jobs:
release:
name: Release
Expand Down

0 comments on commit 724cf01

Please sign in to comment.