Skip to content

Commit

Permalink
Adding artifact bundle actions
Browse files Browse the repository at this point in the history
  • Loading branch information
csjones committed Sep 4, 2023
1 parent 47ab1cc commit 4d0b736
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 2 deletions.
19 changes: 19 additions & 0 deletions .github/workflows/artifact-bundle.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
name: Artifact Bundle

on:
schedule:
# Daily at 8:20 UTC
- cron: '20 8 * * *'
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

jobs:
check:
name: Test
runs-on: macOS-13
steps:
- name: Get latest version
run: |
echo "$(gh release list -R gigabitcoin/template-plugin -L 1)"
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/build.yml → .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
steps:
- uses: actions/checkout@v3
- name: List available plugins in macOS
run: swift package plugin --list
run: swift package plugin template

Linux:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,4 +8,4 @@ ADD . /Linux
WORKDIR /Linux

# List available plugins in Linux
RUN swift package plugin --list
RUN swift package plugin template

0 comments on commit 4d0b736

Please sign in to comment.