-
Notifications
You must be signed in to change notification settings - Fork 87
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Revert "Merge branch 'master' into master" (#1730)
- Loading branch information
1 parent
ce8d3af
commit 2eda247
Showing
3 changed files
with
3 additions
and
75 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -4,9 +4,6 @@ on: | |
release: | ||
types: [created] | ||
|
||
env: | ||
DOCKER_IMAGE_NAME: unstoppableswap/asb | ||
|
||
jobs: | ||
build_binaries: | ||
name: Build | ||
|
@@ -85,7 +82,7 @@ jobs: | |
run: target/${{ matrix.target }}/release/${{ matrix.bin }} --help | ||
|
||
- id: create-archive-name | ||
shell: python | ||
shell: python # Use python to have a prettier name for the archive on Windows. | ||
run: | | ||
import platform | ||
os_info = platform.uname() | ||
|
@@ -125,51 +122,3 @@ jobs: | |
asset_path: ./${{ steps.create-archive-name.outputs.archive }} | ||
asset_name: ${{ steps.create-archive-name.outputs.archive }} | ||
asset_content_type: application/gzip | ||
|
||
build_and_push_docker: | ||
name: Build and Push Docker Image | ||
runs-on: ubuntu-latest | ||
needs: build_binaries | ||
steps: | ||
- name: Checkout code | ||
uses: actions/[email protected] | ||
with: | ||
ref: ${{ github.event.release.target_commitish }} | ||
|
||
- name: Set up Docker Buildx | ||
uses: docker/setup-buildx-action@v2 | ||
|
||
- name: Login to DockerHub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKERHUB_USERNAME }} | ||
password: ${{ secrets.DOCKERHUB_TOKEN }} | ||
|
||
- name: Set Docker tags | ||
id: docker_tags | ||
run: | | ||
if [[ ${{ github.event.release.tag_name }} == "preview" ]]; then | ||
echo "::set-output name=preview::true" | ||
else | ||
echo "::set-output name=preview::false" | ||
fi | ||
- name: Build and push Docker image | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: . | ||
file: ./Dockerfile | ||
push: true | ||
tags: | | ||
${{ env.DOCKER_IMAGE_NAME }}:${{ github.event.release.tag_name }} | ||
${{ env.DOCKER_IMAGE_NAME }}:latest | ||
if: steps.docker_tags.outputs.preview == 'false' | ||
|
||
- name: Build and push Docker image without latest tag (preview release) | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: . | ||
file: ./Dockerfile | ||
push: true | ||
tags: ${{ env.DOCKER_IMAGE_NAME }}:${{ github.event.release.tag_name }} | ||
if: steps.docker_tags.outputs.preview == 'true' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.