Skip to content
This repository has been archived by the owner on Apr 10, 2024. It is now read-only.

Commit

Permalink
Test
Browse files Browse the repository at this point in the history
  • Loading branch information
seowalex committed Apr 21, 2023
1 parent 82e64ed commit 8231d40
Show file tree
Hide file tree
Showing 2 changed files with 33 additions and 4 deletions.
32 changes: 32 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
name: Release

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

jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Get version from tag
id: tag_name
run: echo current_version=${GITHUB_REF_NAME#v} >> $GITHUB_OUTPUT
- name: Checkout
uses: actions/checkout@v3
- name: Get changelog entry
id: changelog_reader
uses: mindsers/changelog-reader-action@v2
with:
version: ${{ steps.tag_name.outputs.current_version }}
validation_level: error
- name: Create Release
uses: softprops/action-gh-release@v1
with:
body: ${{ steps.changelog_reader.outputs.changes }}
- name: Upload assets
uses: taiki-e/upload-rust-binary-action@v1
with:
bin: haddock
token: ${{ secrets.GITHUB_TOKEN }}
5 changes: 1 addition & 4 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -25,13 +25,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [0.1.4] - 2023-02-12

### Added

- Ensure that bind mounts that do not exist are created.

### Fixed

- Make `stop_grace_period` work.
- Ensure that bind mounts that do not exist are created.

## [0.1.3] - 2023-01-18

Expand Down

0 comments on commit 8231d40

Please sign in to comment.