Skip to content

Commit

Permalink
Authme 4.1.0 (#255)
Browse files Browse the repository at this point in the history
  • Loading branch information
Levminer authored May 9, 2023
1 parent 8f9c690 commit 6ba6fdc
Show file tree
Hide file tree
Showing 36 changed files with 4,201 additions and 1,858 deletions.
14 changes: 10 additions & 4 deletions .github/workflows/alpha-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,17 +24,23 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install rust stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable
- name: Rust setup
uses: dtolnay/rust-toolchain@stable
- name: "Apple silicon target"
if: matrix.NAME == 'mac'
run : |
rustup target add aarch64-apple-darwin
- name: Install webkit2gtk (ubuntu only)
if: matrix.NAME == 'linux'
run: |
sudo apt-get update
sudo apt-get install -y libgtk-3-dev webkit2gtk-4.0 libappindicator3-dev librsvg2-dev patchelf
- name: Install app dependencies and build it
if: matrix.NAME == 'linux' || matrix.NAME == 'windows'
run: npm ci && npm run build:alpha
- name: Install app dependencies and build it
if: matrix.NAME == 'mac'
run: npm ci && npm run build:alpha -- --target universal-apple-darwin
- uses: tauri-apps/tauri-action@v0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
11 changes: 11 additions & 0 deletions .github/workflows/release-artifacts.yml
Original file line number Diff line number Diff line change
Expand Up @@ -83,6 +83,17 @@ jobs:
asset_name: authme-${{steps.version.outputs.prop}}-windows-x64.msi
asset_content_type: application/octet-stream

- name: Upload the windows updater asset
if: runner.os == 'Windows'
uses: actions/upload-release-asset@v1.0.2
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{steps.get_upload_url.outputs.url}}
asset_path: ./core/target/release/upload/authme-${{steps.version.outputs.prop}}-windows-x64.zip
asset_name: authme-${{steps.version.outputs.prop}}-windows-x64.zip
asset_content_type: application/octet-stream

# Linux
- name: Upload the linux installer asset
if: runner.os == 'Linux'
Expand Down
7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,10 @@
### Authme 4.0.3 (2022. March 2.)

- [[15cef99](https://github.com/Levminer/authme/commit/15cef99)] Update version (2023-03-04)
- [[fa240ee](https://github.com/Levminer/authme/commit/fa240ee)] Fix CSP (2023-03-02)
- [[97309ec](https://github.com/Levminer/authme/commit/97309ec)] Fix type errors (2023-02-04)
- [[9c651db](https://github.com/Levminer/authme/commit/9c651db)] Update packages and changelog (2023-01-26)

### Authme 4.0.2 (2022. January 10.)

- [[ee8828a](https://github.com/Levminer/authme/commit/ee8828a)] Update packages and Tauri #246 (2023-01-10)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
[![Download](https://img.shields.io/badge/Windows,%20Linux,%20macOS-download-brightgreen)](https://authme.levminer.com/#downloads)
[![Updated](https://img.shields.io/github/last-commit/levminer/authme/main?color=yellowgreen&label=Updated)](https://github.com/Levminer/authme/releases)

- Also available on: [Microsoft Store](https://link.levminer.com/authme-ms-store), [Snapcraft](https://snapcraft.io/authme), [winget](https://winstall.app/apps/Levminer.Authme)
- Also available on: [Microsoft Store](https://link.levminer.com/authme-ms-store), [Snapcraft](https://snapcraft.io/authme), [winget](https://winstall.app/apps/Levminer.Authme), and [Scoop](https://scoop.sh/#/apps?s=2&d=1&o=true&q=authme).

## Downloads (Alpha)

Expand Down
Loading

0 comments on commit 6ba6fdc

Please sign in to comment.