Skip to content
This repository has been archived by the owner on Dec 14, 2024. It is now read-only.
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: reacherhq/backend
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v0.1.4
Choose a base ref
...
head repository: reacherhq/backend
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v0.1.5
Choose a head ref
  • 2 commits
  • 7 files changed
  • 1 contributor

Commits on May 4, 2020

  1. fix: Fix CI building production build (#43)

    * fix: Fix CI building production build
    
    * 0.1.5
    
    * Remove useless files
    amaury1093 authored May 4, 2020
    Copy the full SHA
    0a04981 View commit details
  2. chore(release): 0.1.5

    amaury1093 committed May 4, 2020
    Copy the full SHA
    f4a917e View commit details
Showing with 12 additions and 43 deletions.
  1. +2 −2 .github/workflows/production.yml
  2. +0 −8 .versionrc.json
  3. +7 −0 CHANGELOG.md
  4. +1 −1 Cargo.lock
  5. +1 −1 Cargo.toml
  6. +1 −1 Dockerfile.production
  7. +0 −30 scripts/update-dockerfile.js
4 changes: 2 additions & 2 deletions .github/workflows/production.yml
Original file line number Diff line number Diff line change
@@ -23,13 +23,13 @@ jobs:

- name: Create .tar.gz
run: |
cd ./target/x86_64-unknown-linux-musl/release
cp ./target/x86_64-unknown-linux-musl/release/reacher .
tar -czvf reacher-${{ env.REACHER_VERSION }}-x86_64-unknown-linux-musl.tar.gz reacher
- name: Create a Github Release
uses: softprops/action-gh-release@v1
with:
files: ./target/x86_64-unknown-linux-musl/release/reacher-${{ env.REACHER_VERSION }}-x86_64-unknown-linux-musl.tar.gz
files: reacher-${{ env.REACHER_VERSION }}-x86_64-unknown-linux-musl.tar.gz
name: Reacher ${{ env.REACHER_VERSION }}
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
8 changes: 0 additions & 8 deletions .versionrc.json

This file was deleted.

7 changes: 7 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -2,6 +2,13 @@

All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.

### [0.1.5](https://github.com/reacherhq/backend/compare/v0.1.4...v0.1.5) (2020-05-04)


### Bug Fixes

* Fix CI building production build ([#43](https://github.com/reacherhq/backend/issues/43)) ([0a04981](https://github.com/reacherhq/backend/commit/0a04981ddc6af3b4bccf136c36bfe4dcd53b7d38))

### [0.1.4](https://github.com/reacherhq/backend/compare/v0.1.3...v0.1.4) (2020-05-04)


2 changes: 1 addition & 1 deletion Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "reacher"
version = "0.1.2"
version = "0.1.5"
edition = "2018"
publish = false

2 changes: 1 addition & 1 deletion Dockerfile.production
Original file line number Diff line number Diff line change
@@ -2,7 +2,7 @@ FROM alpine:latest

WORKDIR /reacher

ENV REACHER_VERSION 0.1.2
ENV REACHER_VERSION 0.1.5

# Install needed libraries
RUN apk update && \
30 changes: 0 additions & 30 deletions scripts/update-dockerfile.js

This file was deleted.