Skip to content

trying it again

trying it again #24

Workflow file for this run

name: Build and Release Python Package
on:
push:
tags:
- '*'
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Python
uses: actions/setup-python@v2
with:
python-version: '3.9'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install setuptools wheel build
- name: Build package
run: python -m build
- name: Create Release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.UPLOAD_TOKEN }}
with:
tag_name: "trying2"
release_name: "trying2"
draft: true
prerelease: true
- name: Upload Release Asset
uses: actions/upload-release-asset@v1
GITHUB_TOKEN: ${{ secrets.UPLOAD_TOKEN }}

Check failure on line 41 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / .github/workflows/release.yml

Invalid workflow file

You have an error in your yaml syntax on line 41
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: ./dist/*.tar.gz
asset_name: htmlcalendar-${{ github.ref }}.tar.gz
asset_content_type: application/gzip