Skip to content

Commit

Permalink
remove experimental wasm runtime, and update dependencies, v0.2.0 rel…
Browse files Browse the repository at this point in the history
…ease
  • Loading branch information
Vrtgs committed Aug 15, 2024
1 parent 23c7294 commit 8024163
Show file tree
Hide file tree
Showing 22 changed files with 331 additions and 3,353 deletions.
28 changes: 27 additions & 1 deletion .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,11 +36,37 @@ jobs:
- name: Install dependencies on Ubuntu
if: runner.os == 'Linux'
run: sudo apt install libdbus-1-dev pkg-config

- name: Install Homebrew on macOS
if: runner.os == 'macOS'
run: /bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)"

- name: Install UPX on macOS
if: runner.os == 'macOS'
run: brew install upx

- name: Install Chocolatey on Windows
if: runner.os == 'Windows'
run: |
Set-ExecutionPolicy Bypass -Scope Process -Force;
[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072;
iex ((New-Object System.Net.WebClient).DownloadString('https://community.chocolatey.org/install.ps1'))
- name: Install UPX on Windows
if: runner.os == 'Windows'
run: choco install upx

- uses: actions/checkout@v4

- name: Build and compress binary
run: |
cargo build --release --target ${{ matrix.target }}
upx --best target/${{ matrix.target }}/release/cloudflare-ddns
- uses: taiki-e/upload-rust-binary-action@v1
with:
bin: cloudflare-ddns
target: ${{ matrix.target }}
tar: unix
zip: windows
token: ${{ secrets.GITHUB_TOKEN }}
token: ${{ secrets.GITHUB_TOKEN }}
2 changes: 2 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,8 @@ All notable changes to this project will be documented in this file.

This project adheres to [Semantic Versioning](https://semver.org).

## [0.2.0] - 2024-06-18
- Remove experimental wasm runtime

## [0.1.0] - 2024-06-18
- Initial release
Loading

0 comments on commit 8024163

Please sign in to comment.