⬆️ Bump requests from 2.31.0 to 2.32.0 in /web_app #89
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
# This workflow will load Python, run a script to generate assets, and then | |
# bundle a github release | |
name: Release generator | |
on: | |
pull_request: | |
types: | |
- closed | |
jobs: | |
create_release: | |
if: github.base_ref == 'master' && github.event.pull_request.merged && contains( github.event.pull_request.labels.*.name, 'release') | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-python@v2 | |
with: | |
python-version: 3.8 | |
- name: Create tag from title and run asset script | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
id: find_tag_and_prepare_assets | |
run: | | |
TAG=$(echo ${{ github.event.pull_request.title }} | sed -E "s/^.*Release (.+\..+\..+)$/\1/g") | |
echo "::set-output name=tag::$TAG" | |
SCRIPT=.github/prepare_assets.sh | |
if [ -f $SCRIPT ]; then | |
chmod u+x $SCRIPT | |
$SCRIPT $TAG | |
fi | |
- name: Create Release | |
id: create_release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: ${{ steps.find_tag_and_prepare_assets.outputs.tag }} | |
release_name: ${{ github.event.pull_request.title }} | |
body: ${{ github.event.pull_request.body }} | |
draft: false | |
prerelease: false | |
- name: Add latest-release tag | |
run: | | |
git tag -f latest-release | |
git push -f --tags | |
- name: Upload Assets | |
run: | | |
upload_url=${{ steps.create_release.outputs.upload_url }} | |
if [ -f .github/release_assets.txt ]; then | |
while IFS="" read -r FILE || [ -n "$FILE" ] | |
do | |
curl -H "Authorization: token ${{ secrets.GITHUB_TOKEN }}" \ | |
-H "Content-Type: $(file -b --mime-type $FILE)" \ | |
--data-binary "@$FILE" \ | |
"${upload_url%\{*}?name=$(basename $FILE)" | |
done < .github/release_assets.txt | |
fi |