From 184043162f4e1b6cf71e4e6688a549ddf4e9c9e2 Mon Sep 17 00:00:00 2001 From: Stan Soldatov Date: Sat, 21 Dec 2024 11:20:30 +0100 Subject: [PATCH] Removed readme action. --- .github/workflows/update_readme.yml | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 .github/workflows/update_readme.yml diff --git a/.github/workflows/update_readme.yml b/.github/workflows/update_readme.yml deleted file mode 100644 index b2d24ab..0000000 --- a/.github/workflows/update_readme.yml +++ /dev/null @@ -1,26 +0,0 @@ -name: Update docker tag in README -on: - release: - types: [published] - -jobs: - update-readme: - runs-on: ubuntu-latest - - steps: - - name: Checkout repository - uses: actions/checkout@v2 - - - name: Update README.md - run: | - sed -i "s|docker run -d -p 8501:8501 --name maps4fs iwatkot/maps4fs.*|docker run -d -p 8501:8501 --name maps4fs iwatkot/maps4fs:${{ github.ref_name }}|g" README.md - - - name: Commit changes - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - run: | - git config --global user.name 'github-actions[bot]' - git config --global user.email 'github-actions[bot]@users.noreply.github.com' - git add README.md - git commit -m "Update Docker tag in README to ${{ github.ref_name }}" - git push origin HEAD:main \ No newline at end of file