Skip to content

Commit

Permalink
Releases (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
kevgo authored Nov 14, 2023
1 parent fd70a47 commit ac1ef41
Show file tree
Hide file tree
Showing 3 changed files with 71 additions and 2 deletions.
62 changes: 62 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
name: Release

permissions:
contents: write

on:
push:
tags:
- v[0-9]+.*

jobs:
create-release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: taiki-e/create-gh-release-action@v1
with:
# (optional) Path to changelog.
changelog: CHANGELOG.md
draft: true
# (required) GitHub token for creating GitHub Releases.
token: ${{ secrets.RELEASE_TOKEN }}

upload-assets:
needs: create-release
strategy:
matrix:
include:
- filename: run_that_app_linux_arm_64
target: aarch64-unknown-linux-gnu
os: ubuntu-latest
- filename: run_that_app_linux_intel_64
target: x86_64-unknown-linux-gnu
os: ubuntu-latest
- filename: run_that_app_macos_arm_64
target: aarch64-apple-darwin
os: macos-latest
- filename: run_that_app_macos_intel_64
target: x86_64-apple-darwin
os: macos-latest
- filename: run_that_app_macos_universal
target: universal-apple-darwin
os: macos-latest
- filename: run_that_app_windows_intel_64
target: x86_64-pc-windows-msvc
os: windows-latest
- filename: run_that_app_windows_arm_64
target: aarch64-pc-windows-msvc
os: windows-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: taiki-e/upload-rust-binary-action@v1
with:
archive: ${{ matrix.filename }}
# (required) Comma-separated list of binary names (non-extension portion of filename) to build and upload.
# Note that glob pattern is not supported yet.
bin: run-that-app
# (optional) Target triple, default is host triple.
target: ${{ matrix.target }}
# (required) GitHub token for uploading assets to GitHub Releases.
token: ${{ secrets.RELEASE_TOKEN }}
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
# run-that-app changelog

### 0.0.1 (2023-11-14)

- installation methods: downloading binaries, compile from source
- apps: alphavet, depth, dprint, gh, gofumpt, golangci-lint, scc, shellcheck,
shfmt
- logging with namespaces for downloading and extracting
- shell output
2 changes: 0 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,8 +3,6 @@
[![linux](https://github.com/kevgo/run-that-app/actions/workflows/ci_linux.yml/badge.svg)](https://github.com/kevgo/run-that-app/actions/workflows/ci_linux.yml)
[![windows](https://github.com/kevgo/run-that-app/actions/workflows/ci_windows.yml/badge.svg)](https://github.com/kevgo/run-that-app/actions/workflows/ci_windows.yml)

_Why bother with installation when all you want is run a tool?_

_Run-that-app_ executes small third-party tools used by software developers
(linters, checkers , verifiers) that often have no good way of being installed.
Like Docker, _run-that-app_ works on Linux, Windows, and macOS. Unlike Docker,
Expand Down

0 comments on commit ac1ef41

Please sign in to comment.