-
-
Notifications
You must be signed in to change notification settings - Fork 18
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Test for fixing relative path bug in CLI
- Loading branch information
1 parent
37bb46f
commit 6a45e7c
Showing
4 changed files
with
86 additions
and
91 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 |
---|---|---|
|
@@ -117,99 +117,99 @@ jobs: | |
with: | ||
files: ${{ matrix.OUT_FILE_NAME }} | ||
|
||
build-docker: | ||
name: Build Docker image and push | ||
runs-on: ubuntu-latest | ||
# build-docker: | ||
# name: Build Docker image and push | ||
# runs-on: ubuntu-latest | ||
|
||
permissions: | ||
contents: read | ||
packages: write | ||
# permissions: | ||
# contents: read | ||
# packages: write | ||
|
||
steps: | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
# steps: | ||
# - name: Checkout repository | ||
# uses: actions/checkout@v3 | ||
|
||
- name: Log in to Docker Hub | ||
uses: docker/login-action@v2 | ||
with: | ||
username: ${{ secrets.DOCKER_USERNAME }} | ||
password: ${{ secrets.DOCKER_PASSWORD }} | ||
# - name: Log in to Docker Hub | ||
# uses: docker/login-action@v2 | ||
# with: | ||
# username: ${{ secrets.DOCKER_USERNAME }} | ||
# password: ${{ secrets.DOCKER_PASSWORD }} | ||
|
||
- name: Login to GitHub Container Registry | ||
uses: docker/login-action@v2 | ||
with: | ||
registry: ghcr.io | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
# - name: Login to GitHub Container Registry | ||
# uses: docker/login-action@v2 | ||
# with: | ||
# registry: ghcr.io | ||
# username: ${{ github.actor }} | ||
# password: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Extract metadata (tags, labels) for Docker (min-cli) | ||
id: meta_min_cli | ||
uses: docker/metadata-action@v4 | ||
with: | ||
images: | | ||
${{ github.repository }} | ||
ghcr.io/${{ github.repository }} | ||
flavor: | | ||
suffix=-min-cli,onlatest=true | ||
# - name: Extract metadata (tags, labels) for Docker (min-cli) | ||
# id: meta_min_cli | ||
# uses: docker/metadata-action@v4 | ||
# with: | ||
# images: | | ||
# ${{ github.repository }} | ||
# ghcr.io/${{ github.repository }} | ||
# flavor: | | ||
# suffix=-min-cli,onlatest=true | ||
|
||
- name: Extract metadata (tags, labels) for Docker (min-gui) | ||
id: meta_min_gui | ||
uses: docker/metadata-action@v4 | ||
with: | ||
images: | | ||
${{ github.repository }} | ||
ghcr.io/${{ github.repository }} | ||
flavor: | | ||
suffix=-min-gui,onlatest=true | ||
# - name: Extract metadata (tags, labels) for Docker (min-gui) | ||
# id: meta_min_gui | ||
# uses: docker/metadata-action@v4 | ||
# with: | ||
# images: | | ||
# ${{ github.repository }} | ||
# ghcr.io/${{ github.repository }} | ||
# flavor: | | ||
# suffix=-min-gui,onlatest=true | ||
|
||
- name: Extract metadata (tags, labels) for Docker (full) | ||
id: meta_full | ||
uses: docker/metadata-action@v4 | ||
with: | ||
images: | | ||
${{ github.repository }} | ||
ghcr.io/${{ github.repository }} | ||
# - name: Extract metadata (tags, labels) for Docker (full) | ||
# id: meta_full | ||
# uses: docker/metadata-action@v4 | ||
# with: | ||
# images: | | ||
# ${{ github.repository }} | ||
# ghcr.io/${{ github.repository }} | ||
|
||
- name: Build and push Docker image (min-cli) | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: . | ||
push: true | ||
tags: ${{ steps.meta_min_cli.outputs.tags }} | ||
labels: ${{ steps.meta_min_cli.outputs.labels }} | ||
target: min-cli | ||
# - name: Build and push Docker image (min-cli) | ||
# uses: docker/build-push-action@v4 | ||
# with: | ||
# context: . | ||
# push: true | ||
# tags: ${{ steps.meta_min_cli.outputs.tags }} | ||
# labels: ${{ steps.meta_min_cli.outputs.labels }} | ||
# target: min-cli | ||
|
||
- name: Build and push Docker image (min-gui) | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: . | ||
push: true | ||
tags: ${{ steps.meta_min_gui.outputs.tags }} | ||
labels: ${{ steps.meta_min_gui.outputs.labels }} | ||
target: min-gui | ||
# - name: Build and push Docker image (min-gui) | ||
# uses: docker/build-push-action@v4 | ||
# with: | ||
# context: . | ||
# push: true | ||
# tags: ${{ steps.meta_min_gui.outputs.tags }} | ||
# labels: ${{ steps.meta_min_gui.outputs.labels }} | ||
# target: min-gui | ||
|
||
- name: Build and push Docker image (full) | ||
uses: docker/build-push-action@v4 | ||
with: | ||
context: . | ||
push: true | ||
tags: ${{ steps.meta_full.outputs.tags }} | ||
labels: ${{ steps.meta_full.outputs.labels }} | ||
target: full | ||
# - name: Build and push Docker image (full) | ||
# uses: docker/build-push-action@v4 | ||
# with: | ||
# context: . | ||
# push: true | ||
# tags: ${{ steps.meta_full.outputs.tags }} | ||
# labels: ${{ steps.meta_full.outputs.labels }} | ||
# target: full | ||
|
||
upload-pypi: | ||
name: Upload to pypi | ||
needs: [build-wheel, build-binary] | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/download-artifact@v3 | ||
with: | ||
# unpacks default artifact into dist/ | ||
# if `name: artifact` is omitted, the action will create extra parent dir | ||
name: artifact | ||
path: dist | ||
# upload-pypi: | ||
# name: Upload to pypi | ||
# needs: [build-wheel, build-binary] | ||
# runs-on: ubuntu-latest | ||
# steps: | ||
# - uses: actions/download-artifact@v3 | ||
# with: | ||
# # unpacks default artifact into dist/ | ||
# # if `name: artifact` is omitted, the action will create extra parent dir | ||
# name: artifact | ||
# path: dist | ||
|
||
- uses: pypa/[email protected] | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.PYPI_API_TOKEN }} | ||
# - uses: pypa/[email protected] | ||
# with: | ||
# user: __token__ | ||
# password: ${{ secrets.PYPI_API_TOKEN }} |
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 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 |
---|---|---|
@@ -1,3 +1,3 @@ | ||
#!/usr/bin/env python3 | ||
'''sticker-convert''' | ||
__version__ = '2.1.14' | ||
__version__ = '2.1.15' |
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