Merge branch 'master' into renovate/configure

This commit is contained in:
Peter 2021-11-12 13:24:47 +01:00 committed by GitHub
commit 2b242d2cdd
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 11 additions and 10 deletions

View file

@ -9,10 +9,10 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: steps:
- name: Set up Go 1.15 - name: Set up Go 1.17
uses: actions/setup-go@v2 uses: actions/setup-go@v2
with: with:
go-version: '^1.15' go-version: '^1.17'
id: go id: go
- name: Check out code into the Go module directory - name: Check out code into the Go module directory

View file

@ -10,17 +10,18 @@ includes all features of Reveal.js 4.1.2.
The easiest and fastest way to install Goveal is to use a pre-built binary from the [releases](https://github.com/baez90/goveal/releases/latest). The easiest and fastest way to install Goveal is to use a pre-built binary from the [releases](https://github.com/baez90/goveal/releases/latest).
If you have Go in the latest version installed you can also install it like so: If you have Go in the latest version installed you can also build your own version of Goveal:
```bash ```shell
// latest and greatest task build
go install github.com/baez90/goveal@latest
// release
go install github.com/baez90/goveal@v0.0.7
``` ```
_Note: Releases before v0.0.7 are based on Go 1.15 and used Pkger to embed Reveal.JS and cannot be installed with `go install`._ Requirements:
- [task](https://taskfile.dev/)
- _Optional:_ [goreleaser](https://goreleaser.com/) (for `task snapshot-release` to build all binaries)
_Note: All script tasks in the [Taskfile.yml](Taskfile.yml) are meant to be executed with Linux/MacOS. Binaries for Windows are provided but not tested!_
## Usage ## Usage