acmesmith 2.3.0 → 2.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/.github/workflows/build.yml +5 -6
- data/CHANGELOG.md +6 -0
- data/Gemfile.lock +1 -1
- data/lib/acmesmith/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4c2ccb5560fae2d63385e8460268f5c1fa4ca9e7fa96abb34874fbc2225c4f85
|
|
4
|
+
data.tar.gz: 58f74cdbdbb476db11fe8bdde5f6cd8b60e6f05845c47f6293147fb644e29b3c
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 49099fbee8ea178501cd45fd468c5554c3dfc938ff9d86ff1a5dcbbe3e8385444486ca46bffdadea7f1f70f89e7d5df69ef4191bbd6f6de4de2c94d9ec73c8cf
|
|
7
|
+
data.tar.gz: f841483c5c224e73a6e6b95ca7317dc481642b7786899ad15c31c2c97dfae649fc1cf0133ea7ac3afe8b002d10230c73235c77d90eca85c2103789fc5aed3e7d
|
data/.github/workflows/build.yml
CHANGED
|
@@ -2,15 +2,14 @@ name: ci
|
|
|
2
2
|
on:
|
|
3
3
|
schedule:
|
|
4
4
|
- cron: '36 7 2,12,22 * *'
|
|
5
|
-
|
|
6
|
-
types: [published]
|
|
5
|
+
create: {}
|
|
7
6
|
pull_request:
|
|
8
7
|
branches: [master]
|
|
9
8
|
push:
|
|
10
9
|
branches: [master, ci-test]
|
|
11
10
|
|
|
12
11
|
env:
|
|
13
|
-
DOCKER_REPO: 'sorah/
|
|
12
|
+
DOCKER_REPO: 'sorah/acmesmith'
|
|
14
13
|
|
|
15
14
|
jobs:
|
|
16
15
|
test:
|
|
@@ -86,8 +85,8 @@ jobs:
|
|
|
86
85
|
- name: "docker tag ${DOCKER_REPO}:${TAG} ${DOCKER_REPO}:latest"
|
|
87
86
|
run: |
|
|
88
87
|
TAG=$(basename "${{ github.ref }}")
|
|
89
|
-
docker pull ${DOCKER_REPO}:${TAG}
|
|
90
|
-
docker tag ${DOCKER_REPO}:${TAG} ${DOCKER_REPO}:latest
|
|
88
|
+
docker pull ${DOCKER_REPO}:${TAG} || :
|
|
89
|
+
docker tag ${DOCKER_REPO}:${TAG} ${DOCKER_REPO}:latest || :
|
|
91
90
|
if: "${{ startsWith(github.ref, 'refs/tags/v') }}"
|
|
92
91
|
|
|
93
92
|
- run: "docker pull ${DOCKER_REPO}:builder || :"
|
|
@@ -106,7 +105,7 @@ jobs:
|
|
|
106
105
|
docker-push:
|
|
107
106
|
name: docker-push
|
|
108
107
|
needs: [test, integration-pebble, docker-build]
|
|
109
|
-
if: "${{ github.event_name == 'push' || github.event_name == '
|
|
108
|
+
if: "${{ github.event_name == 'push' || github.event_name == 'create' }}"
|
|
110
109
|
runs-on: ubuntu-latest
|
|
111
110
|
steps:
|
|
112
111
|
- run: "echo ${{ secrets.DOCKERHUB_TOKEN }} | docker login -u sorah --password-stdin"
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
data/lib/acmesmith/version.rb
CHANGED