Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
P
packer
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Kristopher Ruzic
packer
Commits
7043dfee
Commit
7043dfee
authored
Jun 24, 2013
by
Mitchell Hashimoto
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
scripts: temporarily password protect ZIPs, upload script
parent
6a0bbd40
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
34 additions
and
1 deletion
+34
-1
scripts/dist.sh
scripts/dist.sh
+1
-1
scripts/upload.sh
scripts/upload.sh
+33
-0
No files found.
scripts/dist.sh
View file @
7043dfee
...
...
@@ -79,7 +79,7 @@ for PLATFORM in $(find ./pkg/${VERSIONDIR} -mindepth 1 -maxdepth 1 -type d); do
(
pushd
${
PLATFORM
}
zip
${
DIR
}
/pkg/
${
VERSIONDIR
}
/dist/
${
ARCHIVE_NAME
}
.zip ./
*
zip
-P
hashipacker
${
DIR
}
/pkg/
${
VERSIONDIR
}
/dist/
${
ARCHIVE_NAME
}
.zip ./
*
popd
)
&
done
...
...
scripts/upload.sh
0 → 100755
View file @
7043dfee
#!/bin/bash
set
-e
# Get the parent directory of where this script is.
SOURCE
=
"
${
BASH_SOURCE
[0]
}
"
while
[
-h
"
$SOURCE
"
]
;
do
SOURCE
=
"
$(
readlink
"
$SOURCE
"
)
"
;
done
DIR
=
"
$(
cd
-P
"
$(
dirname
"
$SOURCE
"
)
/.."
&&
pwd
)
"
# Change into that dir because we expect that
cd
$DIR
# Get the version from the command line
VERSION
=
$1
if
[
-z
$VERSION
]
;
then
echo
"Please specify a version."
exit
1
fi
# Make sure we have a bintray API key
if
[
-z
$BINTRAY_API_KEY
]
;
then
echo
"Please set your bintray API key in the BINTRAY_API_KEY env var."
exit
1
fi
for
ARCHIVE
in
./pkg/
${
VERSION
}
/dist/
*
;
do
ARCHIVE_NAME
=
$(
basename
${
ARCHIVE
}
)
echo
Uploading:
$ARCHIVE_NAME
curl
\
-T
${
ARCHIVE
}
\
-umitchellh
:
${
BINTRAY_API_KEY
}
\
"https://api.bintray.com/content/mitchellh/packer/packer/
${
VERSION
}
/
${
ARCHIVE_NAME
}
"
done
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment