replace dasl with wilds throughout #16
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
name: Deploy badges to gh-pages | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
name: Deploy badges to gh-pages | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup ruby | |
uses: ruby/setup-ruby@v1 | |
with: | |
ruby-version: 3.2.2 | |
- name: Install Ruby deps | |
run: | | |
bundle install | |
- name: Jekyll build | |
run: | | |
jekyll build | |
- name: Publish badges | |
uses: JamesIves/[email protected] | |
with: | |
branch: gh-pages | |
folder: . |