Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
fuzzygeometric authored Nov 27, 2022
1 parent af6eca1 commit 1607c5e
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: Release Pipeline

on:
release:
types:
- created

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Upload Excel file to GitHub Release Page
if: github.event_name == 'release'
uses: actions/upload-release-asset@v1.0.1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: ./NY Types of Computers and Internet Subscriptions.xlsx
asset_name: NY Types of Computers and Internet Subscriptions-${{ github.event.release.tag_name }}.xlsx
asset_content_type: application/zip

0 comments on commit 1607c5e

Please sign in to comment.