Skip to content

Commit b733cd2

Browse files
author
Igor Kotrasinski
committed
Fix the release action
This will probably involve a bunch of evil force-pushing. Signed-off-by: Igor Kotrasinski <[email protected]>
1 parent 599ef5e commit b733cd2

File tree

3 files changed

+11
-7
lines changed

3 files changed

+11
-7
lines changed

.github/workflows/release.yml

+9-5
Original file line numberDiff line numberDiff line change
@@ -14,11 +14,15 @@ jobs:
1414
id: vars
1515
run: echo ::set-output name=tag::${GITHUB_REF#refs/*/}
1616

17-
- name: Build and publish docker image
18-
uses: docker/build-push-action@v2
17+
- uses: docker/setup-buildx-action@v1
18+
19+
- uses: docker/login-action@v1
1920
with:
20-
repository: FAForever/faf-rust-replayserver
2121
username: ${{ secrets.DOCKER_USERNAME }}
2222
password: ${{ secrets.DOCKER_PASSWORD }}
23-
build_args: GITHUB_REF=${{ steps.vars.outputs.tag }}
24-
tag_with_ref: true
23+
24+
- name: Build and publish docker image
25+
uses: docker/build-push-action@v2
26+
with:
27+
push: true
28+
tags: faforever/faf-rust-replayserver:${{ steps.vars.outputs.tag }}

Cargo.lock

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

Cargo.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[package]
22
name = "faf-rust-replayserver"
3-
version = "0.2.2"
3+
version = "0.2.3"
44
authors = ["Igor Kotrasinski <[email protected]>"]
55
edition = "2018"
66

0 commit comments

Comments
 (0)