diff options
author | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-04-29 12:30:30 (GMT) |
---|---|---|
committer | jan.nijtmans <nijtmans@users.sourceforge.net> | 2021-04-29 12:30:30 (GMT) |
commit | a3201caebdfb4b0aa1ee775eba06a58301494bbd (patch) | |
tree | bda245512a4d94076698547b0d6f00bce863b172 /.github/workflows | |
parent | c5e9409992e2abe638dd57be2e04942efaa446a8 (diff) | |
download | tcl-a3201caebdfb4b0aa1ee775eba06a58301494bbd.zip tcl-a3201caebdfb4b0aa1ee775eba06a58301494bbd.tar.gz tcl-a3201caebdfb4b0aa1ee775eba06a58301494bbd.tar.bz2 |
unofficial -> snapshot
Diffstat (limited to '.github/workflows')
-rw-r--r-- | .github/workflows/onefiledist.yml | 26 |
1 files changed, 13 insertions, 13 deletions
diff --git a/.github/workflows/onefiledist.yml b/.github/workflows/onefiledist.yml index a60428d..0cad3d2 100644 --- a/.github/workflows/onefiledist.yml +++ b/.github/workflows/onefiledist.yml @@ -27,14 +27,14 @@ jobs: working-directory: unix - name: Package run: | - cp ../unix/tclsh tclsh${TCL_PATCHLEVEL}_unofficial - chmod +x tclsh${TCL_PATCHLEVEL}_unofficial - tar -cf tclsh${TCL_PATCHLEVEL}_unofficial.tar tclsh${TCL_PATCHLEVEL}_unofficial + cp ../unix/tclsh tclsh${TCL_PATCHLEVEL}_snapshot + chmod +x tclsh${TCL_PATCHLEVEL}_snapshot + tar -cf tclsh${TCL_PATCHLEVEL}_snapshot.tar tclsh${TCL_PATCHLEVEL}_snapshot working-directory: 1dist - name: Upload uses: actions/upload-artifact@v2 with: - name: Tclsh ${{ env.TCL_PATCHLEVEL }} Linux single-file build (unofficial) + name: Tclsh ${{ env.TCL_PATCHLEVEL }} Linux single-file build (snapshot) path: 1dist/*.tar macos: name: macOS @@ -74,8 +74,8 @@ jobs: - name: Package run: | mkdir contents - cp $TCL_BIN contents/tclsh${TCL_PATCHLEVEL}_unofficial - chmod +x contents/tclsh${TCL_PATCHLEVEL}_unofficial + cp $TCL_BIN contents/tclsh${TCL_PATCHLEVEL}_snapshot + chmod +x contents/tclsh${TCL_PATCHLEVEL}_snapshot cat > contents/README.txt <<EOF This is a single-file executable developer preview of Tcl $TCL_PATCHLEVEL @@ -83,20 +83,20 @@ jobs: Use strictly at your own risk. To run it, you need to copy the executable out and run: - xattr -d com.apple.quarantine tclsh${TCL_PATCHLEVEL}_unofficial + xattr -d com.apple.quarantine tclsh${TCL_PATCHLEVEL}_snapshot to mark the executable as runnable on your machine. EOF $CREATE_DMG \ - --volname "Tcl $TCL_PATCHLEVEL (unofficial)" \ + --volname "Tcl $TCL_PATCHLEVEL (snapshot)" \ --window-pos 200 120 \ --window-size 800 400 \ - "Tcl-$TCL_PATCHLEVEL-(unofficial).dmg" \ + "Tcl-$TCL_PATCHLEVEL-(snapshot).dmg" \ "contents/" working-directory: 1dist - name: Upload uses: actions/upload-artifact@v2 with: - name: Tclsh ${{ env.TCL_PATCHLEVEL }} macOS single-file build (unofficial) + name: Tclsh ${{ env.TCL_PATCHLEVEL }} macOS single-file build (snapshot) path: 1dist/*.dmg win: name: Windows @@ -129,10 +129,10 @@ jobs: working-directory: win - name: Set Executable Name run: | - cp ../win/tclsh*.exe tclsh${TCL_PATCHLEVEL}_unofficial.exe + cp ../win/tclsh*.exe tclsh${TCL_PATCHLEVEL}_snapshot.exe working-directory: 1dist - name: Upload uses: actions/upload-artifact@v2 with: - name: Tclsh ${{ env.TCL_PATCHLEVEL }} Windows single-file build (unofficial) - path: '1dist/*_unofficial.exe' + name: Tclsh ${{ env.TCL_PATCHLEVEL }} Windows single-file build (snapshot) + path: '1dist/*_snapshot.exe' |