Explicitly run find on each file and folder #9
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Publish release on tag creation | |
on: | |
push: | |
tags: | |
- 'v[0-9]+.[0-9]+.[0-9]+' | |
jobs: | |
check_version: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Get shortened version of release tag | |
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV | |
- name: Check release version is set correctly in every file | |
run: python3 utilities/check-version.py ${{ env.RELEASE_VERSION }} | |
run_tests: | |
uses: ./.github/workflows/ci.yml | |
needs: | |
- check_version | |
package: | |
name: Package source files, excluding the pytest.ini and git files | |
runs-on: ubuntu-latest | |
needs: | |
- check_version | |
- run_tests | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Get shortened version of release tag | |
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV | |
- name: Package source code | |
shell: bash | |
run: | | |
find * | grep -v "\.git\|pytest.ini" | tar -czvf HAMLET-${{ env.RELEASE_VERSION }}.tar.gz --files-from - | |
- name: Print event context | |
env: | |
EVENT_CONTEXT: ${{ toJSON(github.event) }} | |
run: | | |
echo $EVENT_CONTEXT | |
- name: Upload archive as artifact | |
uses: actions/upload-artifact@v3 | |
with: | |
name: release-tar | |
path: HAMLET-${{ env.RELEASE_VERSION }}.tar.gz | |
retention-days: 1 | |
release: | |
name: Create a release out of the tar archive | |
needs: | |
- check_version | |
- run_tests | |
- package | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Get shortened version of release tag | |
run: echo "RELEASE_VERSION=${GITHUB_REF#refs/*/}" >> $GITHUB_ENV | |
- name: Download release tarball | |
uses: actions/download-artifact@v3 | |
with: | |
name: release-tar | |
- name: Download release binary | |
uses: actions/download-artifact@v3 | |
with: | |
name: release-binary | |
- name: Create release | |
env: | |
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
gh release create \ | |
${{ env.RELEASE_VERSION}} \ | |
--generate-notes \ | |
HAMLET-${{ env.RELEASE_VERSION}}.tar.gz \ |