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

Ensure there is a release for every push to main/master #863

Closed
dequejenn opened this issue Oct 11, 2023 · 1 comment
Closed

Ensure there is a release for every push to main/master #863

dequejenn opened this issue Oct 11, 2023 · 1 comment
Assignees
Labels
in sprint Ticket is in current sprint PRIORITY: high High priority item; should be scheduled in this or next sprint TYPE: qa bug Bug that was found during the QA process

Comments

@dequejenn
Copy link
Contributor

When trying to merge a release pull request, the following error happened.
image

To solve this, we need to implement per this comment: softprops/action-gh-release#270 (comment)

- name: Tag the repository
  id: tag
  run: |
    # See https://docs.github.com/en/get-started/using-git/dealing-with-special-characters-in-branch-and-tag-names
    TAG=v$(date -Iseconds | sed 's/[T:\+]/-/g')
    echo "$TAG"
    echo "tag=$TAG" >> $GITHUB_OUTPUT
    git tag -a $TAG -m "Published version $TAG" ${GITHUB_SHA}
    git push origin $TAG
- name: Cut a new release
  uses: softprops/action-gh-release@v1
  with:
    files: WebSaver.zip
    tag_name: ${{ steps.tag.outputs.tag }}
@dequejenn dequejenn added TYPE: qa bug Bug that was found during the QA process in sprint Ticket is in current sprint PRIORITY: high High priority item; should be scheduled in this or next sprint labels Oct 11, 2023
@dequejenn dequejenn removed the in sprint Ticket is in current sprint label Oct 23, 2023
@dequejenn
Copy link
Contributor Author

Michael removed the action and used the github cli so should work moving forward now

@dequejenn dequejenn added the in sprint Ticket is in current sprint label Oct 23, 2023
@michael-siek michael-siek reopened this Oct 24, 2023
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
in sprint Ticket is in current sprint PRIORITY: high High priority item; should be scheduled in this or next sprint TYPE: qa bug Bug that was found during the QA process
Projects
None yet
Development

No branches or pull requests

2 participants