Images can now be viewed. There's a BIG crash when non-image files ar… #12
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: Create Tag | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: butlerlogic/action-autotag@1.1.2 | |
env: | |
GITHUB_TOKEN: "${{ secrets.GITHUB_TOKEN }}" | |
with: | |
strategy: regex | |
root: ./Cargo.toml | |
regex_pattern: "version = \\x22([0-9\\.]{3,}([-\\+][\\w\\.0-9]+)?)\\x22" | |
tag_prefix: "v" |