Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
vimagick committed Nov 28, 2023
1 parent f2c480d commit 9d42a1e
Show file tree
Hide file tree
Showing 3 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -17,26 +17,26 @@ jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: docker/setup-qemu-action@v1
- uses: docker/setup-qemu-action@v3

- uses: docker/setup-buildx-action@v1
- uses: docker/setup-buildx-action@v3

- name: Login to DockerHub
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Login to Github Container Registry
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- uses: docker/build-push-action@v2
- uses: docker/build-push-action@v5
with:
platforms: ${{ env.PLATFORMS }}
build-args: |
Expand Down
16 changes: 8 additions & 8 deletions .github/workflows/build-rust.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -11,32 +11,32 @@ on:
env:
PLATFORMS: 'linux/amd64,linux/arm64,linux/arm/v7'
IMAGE_NAME: 'easypi/shadowsocks-rust'
SS_RUST_VERSION: '1.17.0'
SS_RUST_VERSION: '1.17.1'

jobs:
release:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v4

- uses: docker/setup-qemu-action@v1
- uses: docker/setup-qemu-action@v3

- uses: docker/setup-buildx-action@v1
- uses: docker/setup-buildx-action@v3

- name: Login to DockerHub
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}

- name: Login to Github Container Registry
uses: docker/login-action@v1
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}

- uses: docker/build-push-action@v2
- uses: docker/build-push-action@v5
with:
context: rust
platforms: ${{ env.PLATFORMS }}
Expand All @@ -50,7 +50,7 @@ jobs:
push: true

- if: ${{ always() }}
uses: slackapi/slack-github-action@v1.16.0
uses: slackapi/slack-github-action@v1.24.0
with:
channel-id: github
payload: |
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
docker-shadowsocks-libev
========================

[![](https://github.com/easypi/docker-shadowsocks-libev/actions/workflows/build.yaml/badge.svg)](https://github.com/EasyPi/docker-shadowsocks-libev)
[![](https://github.com/easypi/docker-shadowsocks-libev/actions/workflows/build-libev.yaml/badge.svg)](https://github.com/EasyPi/docker-shadowsocks-libev)
[![release](https://img.shields.io/github/release/EasyPi/docker-shadowsocks-libev.svg)](https://github.com/EasyPi/docker-shadowsocks-libev/releases/latest)

[![](http://dockeri.co/image/easypi/shadowsocks-libev)][11]
Expand Down

0 comments on commit 9d42a1e

Please sign in to comment.