Skip to content

Commit

Permalink
Release v1.8.0 amendments.
Browse files Browse the repository at this point in the history
  • Loading branch information
jirenius committed Jul 3, 2024
1 parent 6321828 commit a8ac08a
Show file tree
Hide file tree
Showing 3 changed files with 21 additions and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ jobs:
type=semver,pattern={{version}}-linux
type=semver,pattern={{major}}.{{minor}}-linux
type=semver,pattern={{major}}-linux
type=semver,value=linux
type=semver,pattern=linux
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
Expand Down
19 changes: 19 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,25 @@ permissions:

jobs:

create_release:
name: Create Release
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Create release draft
id: create_release
uses: actions/create-release@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ github.ref }}
release_name: Release ${{ github.ref_name }}
body: |
Edit this draft
draft: true
prerelease: false

cross-compile:

runs-on: ubuntu-latest
Expand Down
1 change: 1 addition & 0 deletions docs/res-service-protocol.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,7 @@
* [Request subject](#request-subject)
* [Request payload](#request-payload)
* [Response](#response)
* [Meta object](#meta-object)
* [Error object](#error-object)
* [Pre-defined errors](#pre-defined-errors)
* [Pre-response](#pre-response)
Expand Down

0 comments on commit a8ac08a

Please sign in to comment.