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

Remove unused release.yml #73

Merged
merged 1 commit into from
Aug 8, 2023
Merged

Remove unused release.yml #73

merged 1 commit into from
Aug 8, 2023

Conversation

yvan-sraka
Copy link
Contributor

create-release:
if: startsWith(github.ref, 'refs/tags/')
needs: build
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Download build artifact
uses: actions/download-artifact@v3
- name: Create release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
# Tag artifacts by os (only Linux for now)
mkdir release-artifacts
for path in build-artifact-Linux/*; do
name=${path##*/}
cp $path release-artifacts/$name-Linux
done
# Strip binaries
strip release-artifacts/*
gh release create ${{ github.ref_name }} \
--repo ${{ github.repository }} --draft --generate-notes \
release-artifacts/*
seems to be what this repo actually use :)

@yvan-sraka yvan-sraka self-assigned this Jul 25, 2023
@andreabedini
Copy link
Member

That workflow is also disabled 😂 release.yml won't be used unless someone tags a release 😄

@andreabedini andreabedini merged commit 1a307b9 into main Aug 8, 2023
1 check passed
@andreabedini andreabedini deleted the yvan-sraka-patch-1 branch August 8, 2023 05:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants