From 8db4b1ff1521703fc07366c160e8b7af12509e6a Mon Sep 17 00:00:00 2001 From: Sven-Hendrik Haase Date: Wed, 4 Sep 2019 22:40:22 +0200 Subject: [PATCH 1/3] Fix markup --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 4cdd466..736b06b 100644 --- a/README.md +++ b/README.md @@ -3,7 +3,7 @@ This action allows you to select which files to upload to the just-tagged release. It runs on all operating systems types offered by GitHub. -## Input variables: +## Input variables You must provide: From 05f38782c21be46ca783ef233582bbd6454996fc Mon Sep 17 00:00:00 2001 From: Sven-Hendrik Haase Date: Wed, 4 Sep 2019 22:42:31 +0200 Subject: [PATCH 2/3] Update README --- README.md | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 736b06b..9778d50 100644 --- a/README.md +++ b/README.md @@ -24,8 +24,9 @@ Simple example: name: Publish on: - create: + push: tags: + - '*' jobs: build: @@ -55,8 +56,9 @@ Complex example with more operating systems: name: Publish on: - create: + push: tags: + - '*' jobs: build: From 13aa5393425198783e0c019780198e36900ee309 Mon Sep 17 00:00:00 2001 From: Sven-Hendrik Haase Date: Wed, 4 Sep 2019 22:44:35 +0200 Subject: [PATCH 3/3] Fix README some more --- README.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 9778d50..6ebbdf2 100644 --- a/README.md +++ b/README.md @@ -61,7 +61,7 @@ on: - '*' jobs: - build: + publish: name: Publish for ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: @@ -83,7 +83,7 @@ jobs: rust-version: stable - uses: actions/checkout@v1 - name: Build - run: cargo build --release + run: cargo build --release --locked - name: Upload binaries to release uses: svenstaro/upload-release-action@v1-release with: