Skip to content

Commit

Permalink
Add a script to tag with latest chromium version
Browse files Browse the repository at this point in the history
  • Loading branch information
bblanchon committed Jul 10, 2018
1 parent 374afae commit 53d7ee3
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 0 deletions.
Empty file modified build.sh
100644 → 100755
Empty file.
8 changes: 8 additions & 0 deletions tag_with_latest.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
#!/usr/bin/env bash

set -eu

TAGNAME=$(git ls-remote --heads https://pdfium.googlesource.com/pdfium.git | grep -ohP 'chromium/\d+' | tail -n1)
git pull
git tag "$TAGNAME"
git push --tags
Empty file modified test.sh
100644 → 100755
Empty file.

0 comments on commit 53d7ee3

Please sign in to comment.