Skip to content

Commit

Permalink
init
Browse files Browse the repository at this point in the history
  • Loading branch information
BFergerson committed Oct 14, 2024
0 parents commit a89719b
Showing 1 changed file with 29 additions and 0 deletions.
29 changes: 29 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
name: Download Release

# Controls when the workflow will run
on: push

jobs:


get_asset:

runs-on: ubuntu-latest

steps:

- name: List Releases
run: gh release list --repo bfergerson/joinem
env:
GITHUB_TOKEN: ${{ secrets.PRIVATE_REPO_TOKEN }}

- name: Fetch asset
run: gh release download --repo bfergerson/joinem master
env:
GITHUB_TOKEN: ${{ secrets.PRIVATE_REPO_TOKEN }}

- name: See what we downloaded
run: ls

- name: Inspect content
run: cat hello.txt

0 comments on commit a89719b

Please sign in to comment.