Commit d5176ff6 authored by narugo1992's avatar narugo1992
Browse files

Merge branch 'main' into dev/py312

parents 85231a94 e9a2e578
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -13,7 +13,7 @@ jobs:
        python-version: [ 3.8 ]
    steps:
      - name: Checkout code
        uses: actions/checkout@v2
        uses: actions/checkout@v3.3.0
        with:
          fetch-depth: 20
          submodules: 'recursive'
+4 −4
Original line number Diff line number Diff line
@@ -29,7 +29,7 @@ jobs:
        with:
          swap-size-gb: 8
      - name: Checkout code
        uses: actions/checkout@v2
        uses: actions/checkout@v3.3.0
        with:
          fetch-depth: 20
          submodules: 'recursive'
@@ -70,7 +70,7 @@ jobs:
        id: commit
        run: |
          git config user.name 'narugo1992'
          git config user.email 'narugo@126.com'
          git config user.email 'narugo992@gmail.com'
          git add -A
          git diff-index --quiet HEAD || git commit -a -m "dev(narugo): auto sync $(date -R)"
      - name: Push changes
@@ -101,7 +101,7 @@ jobs:
        with:
          swap-size-gb: 8
      - name: Checkout code
        uses: actions/checkout@v2
        uses: actions/checkout@v3.3.0
        with:
          fetch-depth: 20
          submodules: 'recursive'
@@ -148,7 +148,7 @@ jobs:
        with:
          GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
          GIT_CONFIG_NAME: narugo1992
          GIT_CONFIG_EMAIL: narugo@126.com
          GIT_CONFIG_EMAIL: narugo992@gmail.com
          BRANCH: gh-pages # The branch the action should deploy to.
          FOLDER: public # The folder the action should deploy.
          CLEAN: true # Automatically remove deleted files from the deploy branch
+1 −1
Original line number Diff line number Diff line
@@ -101,7 +101,7 @@ jobs:
        run: |
          cd imgutils-models
          git config user.name 'narugo1992'
          git config user.email 'narugo@126.com'
          git config user.email 'narugo992@gmail.com'
          git add -A
          git diff-index --quiet HEAD || git commit -a -m "dev(narugo): model publish $(date -R)"
          git push https://narugo:$HF_TOKEN@huggingface.co/deepghs/imgutils-models main
+2 −2
Original line number Diff line number Diff line
@@ -18,7 +18,7 @@ jobs:

    steps:
      - name: Checkout code
        uses: actions/checkout@v2
        uses: actions/checkout@v3.3.0
        with:
          fetch-depth: 20
          submodules: 'recursive'
@@ -37,7 +37,7 @@ jobs:
        run: |
          python -m build --sdist --wheel --outdir dist/
      - name: Publish distribution 📦 to real PyPI
        uses: pypa/gh-action-pypi-publish@master
        uses: pypa/gh-action-pypi-publish@release/v1
        with:
          password: ${{ secrets.PYPI_PASSWORD }}
      - name: Upload binaries to release
+1 −1
Original line number Diff line number Diff line
@@ -60,7 +60,7 @@ jobs:
        run: |
          echo "IS_PYPY=1" >> $GITHUB_ENV
      - name: Checkout code
        uses: actions/checkout@v2
        uses: actions/checkout@v3.3.0
        with:
          fetch-depth: 20
          submodules: 'recursive'
Loading